2019年5月20日 星期一

Kotlin學習筆記(7) Variables

Kotlin學習筆記(7)  Variables

fun main() {
var a: String = "initial"  // 1

val b: Int = 1             // 2
val c = 3 + 43             // 3 
    println(a)
    println(b)
    println(c)
 
}

輸出畫面
initial 1 46

  1. Declares a mutable variable and initializing it.
  2. Declares an immutable variable and initializing it.
  3. Declares an immutable variable and initializing it without specifying the type. The compiler infers the type Int.

沒有留言:

張貼留言

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

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