asas와 is, is!은 type test operator 들이다. as 형변환..업캐스팅 다운캐스팅 쓸 수 있지만 다운케스팅이 확실히 가능할 때 사용하라고 함. const와 final 차이const는 실행 시에 결정되는 값은 할당 할 수 없다. enum enum ThemeColor { red, green, blue, orange } void main(List args) { //사용법 ThemeColor temp = ThemeColor.blue; print(temp); //ThemeColor.blue print(temp.index); //2 //각 이넘들은 0부터 시작하는 index 게터(getter)를 갖습니다. print(ThemeColor.red.index); //0 print(ThemeColor..