티스토리 뷰

Programming/Kotlin

Kotlin Variable

Albothyl 2022. 4. 16. 10:25
  1. val
    1. 불변
    2. Getter 메소드만 제공
  2. var
    1. 가변
    2. Getter, Setter 메소드 제공
  3. val a: Int = 1  // immediate assignment
    val b = 2   // `Int` type is inferred
    val c: Int  // Type required when no initializer is provided
    c = 3       // deferred assignment. c에 값을 다시 할당하면 exception 발생

 

'Programming > Kotlin' 카테고리의 다른 글

Kotlin Conditions  (0) 2022.04.23
Kotlin Operator  (0) 2022.04.23
Kotlin Class  (0) 2022.04.16
Kotlin Visibility Modifiers  (0) 2022.04.16
Kotlin DataType  (0) 2022.04.15
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2025/01   »
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
글 보관함