반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 개발자
- HTML
- Eclipse
- 자바
- programmers
- 티스토리챌린지
- GIT
- oracle
- 쿠키런킹덤크리스마스
- 오블완
- Java
- 쿠킹덤공략
- Spring
- 쿠키런킹덤
- 프로그래밍
- 프로그래머스
- 딥러닝
- 홀리데이익스프레스
- CSS
- 이클립스
- edwith
- 쿠키런킹덤공략
- 스프링
- 스프링퀵스타트
- SQL
- 크리스마스
- MySQL
- 웹개발
- 쿠킹덤
- dart
Archives
- Today
- Total
Dev study and notes
[dart] #22 #4.2 Named Constructor Parameters (04:12) 본문
반응형
class Player {
final String name;
int xp;
String team;
int age;
Player({
required this.name,
required this.xp,
required this.team,
required this.age,
});
void sayHello() {
print("Hi my name is $name");
}
}
void main() {
var player = Player(
name: 'lunch',
xp: 9999,
team: 'red',
age: 100,
);
print(player.name);
player.sayHello();
var player2 = Player(
name: 'lunch2',
xp: 222,
team: 'blue',
age: 200,
);
player2.sayHello();
}
// PRINT
// >>>
// lunch
// Hi my name is lunch
// Hi my name is lunch2
반응형
'studyLog' 카테고리의 다른 글
[dart] #24 #4.5 Cascade Notation (03:13) (0) | 2023.05.03 |
---|---|
[dart] #23 #4.3 Named Constructors (07:28) (0) | 2023.05.03 |
[dart] #21 #4.1 Constructors (03:58) (0) | 2023.05.03 |
[dart] #20 #4.0 Your First Dart Class (04:42) (0) | 2023.05.03 |
[dart] #19 #3.5 Typedef (04:50) (0) | 2023.05.03 |
Comments