如何使用 Java 拼接两个字符串?
可以使用 concat() 方法拼接两个字符串。
示例
public class ConcatinatedStrings { public static void main(String args[]) { String str1 = new String("Tutorials"); String str2 = new String( "Point"); String res = str1.concat(str2); System.out.println(res); } }
输出
TutorialsPoint
广告