Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- appbar
- Kotlin
- Dialog
- activity
- Coroutines
- Navigation
- textfield
- scroll
- 앱
- intent
- 안드로이드
- Compose
- tabbar
- drift
- DART
- textview
- ScrollView
- binding
- 계측
- CustomScrollView
- TEST
- 앱바
- 테스트
- Flutter
- Button
- livedata
- data
- viewmodel
- LifeCycle
- android
Archives
- Today
- Total
목록generic (1)
Study Record
[Dart] 객체 지향 프로그래밍
✍ 객체 지향 프로그래밍이란? 프로그래밍에서 필요한 데이터를 추상화시켜상태와 행위를 가진 객체로 만들고, 객체들 간의 상호작용을 통해 로직을 구성하는 프로그래밍 방법이다. 객체지향 프로그래밍 제대로 이해하기 캡슐화를 핵심으로 두고 보는 OOP 의 핵심 포인트 velog.io ✍ Class 사용 방법 void main() { // new 키워드를 사용해도 좋고 사용하지 않아도 된다. // Idol blackPink = new Idol("블랙 핑크", ["지수", "제니", "리사", "로제"]); Idol blackPink = Idol("블랙 핑크", ["지수", "제니", "리사", "로제"]); print(blackPink.name); blackPink.introduce(); } class Idol {..
Dart
2023. 1. 12. 02:07