[Android App 開發筆記] #從零開始 #D02: Kotlin Basics Part-1

[Android App 開發筆記] #從零開始 #D02: Kotlin Basics Part-1


# Android App 開發

# Reference: Kotlin Bootcamp for Programmers (Link), Lesson 2: Kotlin basics (Link)

# Kotlin docs (所有不會的程式碼都可以看這裡: Link)


[Operators, 運算子]

運算子: 加減乘除


  • 注意: 去除整數 一定會得到整數, 所以 1/2 = 0
  •  Kotlin also supports different number types, such as Int, Long, Double, and Float.

Variables, 變數

  • Kotlin 語法裡面有兩種變數: 可變 和 不可變
  • val → 只能 assign a value once
  • var → 可以change



Strings, 字串

  • " for strings and ' for single characters
  • $variable 這樣字串會被值給取代


Compare conditions and booleans, 布林運算子

  • if / else
  • a range in an if statement
  • if / else if / else
  • when
  • ==, &&, | |




💭 Murmur time 💭 
回想起高中那天學的 C++, 很謝謝那位老師... 一切都是從那後開始,
其實現在偶爾想想也不為了什麼, 就是覺得可以多一項工具, 解決生活中的大大小小問題, 所以 CODING

很多時候都希望有個目的性, 不過有時候沒有目的, 也沒啥關係

By Mark, 馬克

💬 E-mail: mata.assembled@gmail.com




0 Comments