Kotlin娘
基本資料 | |
本名 | Kotlin娘 |
---|---|
別號 | 靠她靈 |
年齡 | 13歲 |
生日 | 2011年7月22日 |
星座 | 巨蟹座 |
萌點 | 溫柔可愛、文藝友好、PLAY技巧豐富、身嬌體柔易推倒、人類聖經 |
親屬或相關人 | |
(姐姐們(Java、Scala)),(妹妹們(Kotlin似乎是家族最小的)) |
Kotlin娘是編程語言Kotlin的擬人化萌娘。
人物簡介
從誕生之日起就默默無聞。要不是Google I/O大會上宣佈欽定Kotlin作為Android官方語言(一等支持語言),到現在她還會繼續默默無聞下去呢!
身世背景
在萬惡的舊社會,青年谷某當年迫於
經典語錄
- create anything —— by jetbrains
- Kotlin 就是一行代碼解決問題 (不是一行代碼能叫Kotlin嗎?)
Play技巧
初級技巧:一物理行代碼解決問題:
String轉Ascii:str.toCharArray().map { it.toInt() }.joinToString(" ").let(::println)
Ascii轉String:asc.split(" ").map { it.toInt().toChar() }.joinToString("").also(::println)
加法計算器:while (true) readLine()!!.split(" ").map { it.filter { it in '0'..'9' } }.filter { it.isNotEmpty() }.map { it.toLong() }.sum().let(::println)
↑(小數):while (true) readLine()!!.splitToSequence(" ").mapNotNull { it.toDoubleOrNull() }.sum().let { if (it % 1 == 0.0) it.toInt() else it }.let(::println)
|