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 | 31 |
Tags
- 230508
- querySelector
- DFS
- putextra
- serializable
- intent
- parcelable
- fragment
- 생명주기
- classList
- C++
- 부가데이터
- 안드로이드
- DOMContentLoaded
- 230510
- string
- html
- 데이터 타입
- null-safety
- textContent
- ActionBar
- 230503
- 함수 인자
- 프래그먼트
- Class
- 인텐트
- ViewPager
- Flutter
- javascript
- Adapter
Archives
- Today
- Total
목록Cascade (1)
나만의 개발노트
[Dart] class2 - Cascade Notation / Enums
1. Cascade Notation: 객체의 property(속성)을 간단하게 수정하는 방법객체 선언을 하고, ..(속성) 을 사용, 는 사용하지 않고 마지막에 ;class Player { String name; int xp; String team; Player({ required this.name, required this.xp, required this.team, });}void main() { //기존 코드 var A = Player(name:'A', xp:12, team: 'red'); A.name = 'abc'; A.team = 'blue'; //cascade notation사용 var A = Player(name: 'A', xp: 12, team:..
[Flutter]/[Dart]
2024. 7. 16. 16:44