通过 +(字符串连接)操作符进行字符串连接。
可以使用 Java 的"+"操作符连接字符串。
示例
public class Test { public static void main(String args[]){ String st1 = "Hello"; String st2 = "How"; String st3 = "You"; String res = st1+st2+st3; System.out.println(res); } }
输出
HelloHowYou
广告
可以使用 Java 的"+"操作符连接字符串。
public class Test { public static void main(String args[]){ String st1 = "Hello"; String st2 = "How"; String st3 = "You"; String res = st1+st2+st3; System.out.println(res); } }
HelloHowYou