📜  在 java 代码示例中连接字符串

📅  最后修改于: 2022-03-11 14:52:30.098000             🧑  作者: Mango

代码示例1
String a = "Hello";
String b = " World";
String c = a+b;