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 | 29 | 30 | 31 |
Tags
- livedata
- 앱
- data
- tabbar
- textview
- DART
- drift
- android
- 테스트
- Dialog
- textfield
- Flutter
- appbar
- activity
- Compose
- intent
- Button
- Coroutines
- Navigation
- binding
- 앱바
- ScrollView
- Kotlin
- 계측
- LifeCycle
- viewmodel
- TEST
- CustomScrollView
- 안드로이드
- scroll
Archives
- Today
- Total
목록getter (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