不同的方式连接在 Java 中的字符串
你可以在 Java 中通过使用 concat() 方法或通过使用 ‘+’,即 “连接”运算符连接两个字符串。
示例
public class ConncatSample {
public static void main(String []args) {
String s1 = "Hello";
String s2 = "world";
String res1 = s1.concat(s2);
String res2 = s1+s2;
System.out.print("Concatenation using method:: ");
System.out.println(res1);
System.out.print("Concatenation using operator:: ");
System.out.println(res2);
}
}产出
Concatenation using method:: Helloworld Concatenation using operator:: Helloworld
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP