「Android/kotlin/基本」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→null許可) |
|||
行7: | 行7: | ||
val description = "hoge" | val description = "hoge" | ||
description = "hoge2" // 許可されない | description = "hoge2" // 許可されない | ||
+ | |||
+ | ==nullじゃない時の値== | ||
+ | text1.setText(name ?: "hello"); |
2020年2月13日 (木) 17:42時点における版
null許可
var name: String = null // これだと入らない var title: String? = null // ?をつけるとnullが許可される
読み込みのみ
valを使う
val description = "hoge" description = "hoge2" // 許可されない
nullじゃない時の値
text1.setText(name ?: "hello");