Please enable JavaScript.
Coggle requires JavaScript to display documents.
3章 演算子 (Switch (型 (byte, short, int, enam, string, char), 条件式に使えない (long,…
3章 演算子
-
-
文字列の扱い
-
Stringクラス
中身不変
-
String str = "任意の文字列"
すでにメモリ上に格納されている文字列を再度宣言したとき
参照先は既存の文字列になる
s1 = "tanaka"; s2 = "tanaka";
// s1とs2は同じ参照先
s1 == s2 // →ture
-
-
-
-
-
-