集册 Java实例教程 连接字符串

连接字符串

欢马劈雪     最近更新时间:2020-01-02 10:19:05

515
要将字符串连接在一起,请使用concat()方法。
//来自 时 代 J a v a

String one = "Hello"; 

String two = "Java9"; 

String result = one.concat(" ".concat(two));