Notice
Recent Posts
Recent Comments
Link
Mokyung
Dart의 private 선언 본문
Dart에서 private 선언은 간단하다.
_ underscore를 붙이면 된다.
예를 들면 Flutter에서 State 클래스의 경우 보통 private으로 선언한다.
class _MyAppState extends State<MyApp> {
var _num = 0;
void _addNum() {
num++;
}
// ...
}
위의 class, inctance field, method는 모두 private이다.
느낀점
- private 선언이 굉장히 편하다. 진짜 private으로 선언되는게 맞나 싶을정도..
Dart에서는 이름 짓는 규칙으로 Camel case를 사용하기에, underscore가 들어간 이름들이 눈에 잘 들어오긴 할 것 같다.
'컴퓨터 > Flutter' 카테고리의 다른 글
Flutter의 Flexible Widget & Expanded Widget (0) | 2021.09.07 |
---|---|
Dart의 final vs const (0) | 2021.09.06 |
Dart의 Constructor (0) | 2021.09.04 |
Comments