Dart 구문 둘러보기 - Dart 프로그래밍 - 2부
void printInteger(int aNumber) {
print('The number is $aNumber.');
}
void main() {
var number = 42;
printInteger(number);
}
main()은 앱 실행이 시작되는 특별한 필수 최상위 함수입니다. 모든 앱에는 최상위 수준의 main() 함수가 있어야 합니다.
var는 유형을 지정하지 않고 변수를 선언하는 방법입니다. 그러나 var와 dynamic의 차이점을 알고 계십니까? 여러분과 빠르게 비교하겠습니다.
- dynamic: can change TYPE & VALUE of the variable later in code.
- var: takes the type of the value that is first assigned and doesn’t allow the type to be changed, only can change value.
Dart is smart enough to know exact type when you declare var with variable. On previous example type of number is : "int".
다음은 Dart 언어가 특별히 취급하는 키워드입니다. 이러한 키워드를 식별자로 사용하지 마십시오.
다음은 Dart 언어를 배울 때 중요한 개념입니다.
Example:
int? number;
That's mean number variable can be int type or null
But if you do like this
int plusNumber = 1 + number!;
That's mean you're force number never null with "!" comma. And if number null, it'll through an exception. So avoid doing like that if you not sure about data can null or nut.
int number; //This is public variable
int _number2: //This is private variable
다트 구문에 대해 이해하는 것으로 충분하다고 생각합니다. 다트 구문에 대해 요약하면 다음과 같습니다.
내 더미 기사를 읽어 주셔서 감사합니다. 앞으로 Flutter에 대한 멋진 지식을 배우기 전에 충분한 준비를 하고 싶습니다. 조언이나 의견이 있으시면 제 지식을 더 쉽게 이해하고 업데이트하고 공유할 수 있도록 알려주세요.
Reference
이 문제에 관하여(Dart 구문 둘러보기 - Dart 프로그래밍 - 2부), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/hoangnguyen0403/a-tour-with-dart-syntax-dart-programming-part-2-136l텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)