2019年5月20日 星期一

Kotlin學習筆記(9) Declares a variable without initialization.

Kotlin學習筆記(9) Declares a variable without initialization.

fun main() {
      val d: Int  // 1

      if (someCondition()) {
          d = 1   // 2
      } else {
          d = 2   // 2
      }

      println(d) // 3

}

輸出畫面
1
  1. Declares a variable without initialization.
  2. Initializes the variable with different values depending on some condition.
  3. Reading the variable is possible because it's already been initialized.

沒有留言:

張貼留言

113 學年度第 1 學期 RFID應用課程 Arduino程式

113 學年度第 1 學期 RFID應用課程 Arduino程式 https://www.mediafire.com/file/zr0h0p3iosq12jw/MFRC522+(2).7z/file 內含修改過後的 MFRC522 程式庫 (原程式有錯誤) //定義MFRC522...