Java 程序连接字符串和整数
要连接字符串和一些整数值,你需要使用 + 运算符。
假设有以下字符串。
String str = "Demo Text";
现在,我们将连接整数值。
String res = str + 1 + 2 + 3 + 4 + 5;
以下为最终示例。
示例
public class Demo { public static void main(String[] args) { String str = "Demo Text"; System.out.println("String = "+str); String res = str + 1 + 2 + 3 + 4 + 5; System.out.println(res); } }
输出
String = Demo Text Demo Text12345
广告