JavaSE8基础 String concat与+ 连接两个字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaSE8基础 String concat与+ 连接两个字符串相关的知识,希望对你有一定的参考价值。
os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)
code:
package jizuiku.t02; public class Demo { public static void main(String[] args) { String s1 = "cnblog"; String s2 = "jizuiku"; String res1 = s1.concat(s2);//但是 你可以看一下concat的源码,很有趣 String res2 = s1 + s2;//这个用的多 //效果相同 System.out.println(res1); System.out.println(res2); } }
result:
Java优秀,值得学习。
学习资源:API手册+Java源码。
以上是关于JavaSE8基础 String concat与+ 连接两个字符串的主要内容,如果未能解决你的问题,请参考以下文章
JavaSE8基础 String 字符串为空与字符串对象为空
JavaSE8基础 StringBuffer与String变量在追加字符串后,引用变量的地址发生改变
JavaSE8基础 String 通过构造方法 将一维char数组化为String