반응형
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
- 쿠키런킹덤
- 이클립스
- Spring
- 쿠키런킹덤공략
- 개발자
- Eclipse
- 크리스마스
- SQL
- 스프링
- 쿠킹덤공략
- programmers
- MySQL
- 쿠키런킹덤크리스마스
- Java
- oracle
- CSS
- 자바
- GIT
- 프로그래밍
- 쿠킹덤
- 스프링퀵스타트
- 오블완
- 티스토리챌린지
- 딥러닝
- dart
- edwith
Archives
- Today
- Total
Dev study and notes
[dart] #26 #4.7 Abstract Classes (03:53) 본문
반응형
abstract class Human {
void walk();
}
enum Team { red, blue }
enum XPLevel { beginner, medium, pro }
class Player extends Human {
String name;
XPLevel xp;
Team team;
Player({
required this.name,
required this.xp,
required this.team,
});
void walk() {
print('I am walking');
}
void sayHello() {
print("Hi my name is $name");
}
}
class Coach extends Human {
void walk() {
print('the coash is walking');
}
}
void main() {
var lunch = Player(
name: 'lunch',
xp: XPLevel.medium,
team: Team.red,
)
..name = 'john'
..xp = XPLevel.beginner
..team = Team.blue
..sayHello();
var coach = Coach();
coach.walk();
}
// PRINT
// >>>
// Hi my name is john
// the coash is walking
반응형
'studyLog' 카테고리의 다른 글
[dart] #28 END #4.9 Mixins (04:16) (0) | 2023.05.03 |
---|---|
[dart] #27 #4.8 Inheritance (08:34) (0) | 2023.05.03 |
[dart] #25 #4.6 Enums (03:12) (0) | 2023.05.03 |
[dart] #24 #4.5 Cascade Notation (03:13) (0) | 2023.05.03 |
[dart] #23 #4.3 Named Constructors (07:28) (0) | 2023.05.03 |
Comments