개발정보/Flutter

What's the difference between 'Final'variable and 'Const'variable?

코리안던 2021. 6. 29.

https://darrengwon.tistory.com/384

 

변수 Final (runtime) vs Const (compile-time constants)

쉽게 정리하면 다음과 같다 코드 실행의 결과로 인해 결정되는 상수는 final 코드 실행 이전부터 결정되어야 하는 상수는 const => DateTime.now()와 같이 실행의 결과로 나오는 값 사용 불가 구분하기

darrengwon.tistory.com

 

'개발정보 > Flutter' 카테고리의 다른 글

flutter_svg: ^0.22.0  (0) 2021.07.19
Error: Cannot run with sound null safety, because the following dependencies  (0) 2021.07.19
Class constructors  (0) 2020.12.30
02_Scaffolding a Flutter App  (0) 2020.12.15
01_Material app()  (0) 2020.12.14

댓글