在 Java 中连接多个字符串。
你可以使用 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