文字列内で使う時
sample
System.out.println("美味しい\tみかん");
コンソール: 美味しい みかん
変数を使う時
sample
String sample1 = "ふつうの";
String sample2 = "いちご";
System.out.println(sample1 + "\t" + sample2);
コンソール: ふつうの いちご
Windows
sample
System.out.println(sample1 + "\t" + sample2);
System.out.println(sample1 + "¥t" + sample2);
\と¥両方が使える
mac
sample
System.out.println(sample1 + "\t" + sample2);
System.out.println(sample1 + "¥t" + sample2); //macではバックスラッシュと円記号が区別される
コンソール:
ふつうの いちご
ふつうの¥tいちご
エスケープシーケンス(一部)
エスケープシーケンス | 記号の意味 | Center align |
---|---|---|
¥" | ダブルクォーテーション | |
¥' | シングルクォーテーション | |
column | 改行 | |
will | ¥(円)マーク | will |
be | be | be |
left | right | center |
aligned | aligned | aligned |