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
- riverpod
- firebase
- 앱심사
- 엡
- 자바 출력 방식
- abap
- JS
- DART
- java
- java 출력
- Flutter
- UI/UX
- 자바스크립트
- Clean Architecture
- printf
- ListView
- LLM
- java 콘솔 출력 차이
- unity
- 배포
- 단축키
- develop
- scss
- nodejs
- npm
- lifecycle
- JQ
- println
- 자바 포맷 출력
- react
Archives
- Today
- Total
목록2025/07/04 (1)
guricode
객체지향 프로그래밍 - static
static정의 - static은 선언된 class에 종속된다.void main() { }class Employee { static String? building; final String name; Employee( this.name, ); void printNameAndBuilding() { print('My name is $name. $building is my workplace'); } static void printBuilding() { print('im working on $building'); }}//static String? building;class Employee 안에 static으로 null이 포함될수 있는 String 값인 building를 만들었다...
앱/Flutter&Dart
2025. 7. 4. 23:44