コードのサンプル
public class ConcatSample1 {
static public void main(String args[]){
String str1 = "文字列1";
String str2 = "文字列2";
String str = str1 + str2;
System.out.println("+演算子による文字列の連結 -> " + str);
}
}
コードのサンプル2
no code
hints
キーワード
info: this is a information
tip: this is a tip
danger: this is a danger message
working: this is working