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源码。

时间: 2024-10-09 22:58:24

JavaSE8基础 String concat与+ 连接两个字符串的相关文章

Python3基础 print中+号连接两个字符串,字符串的拼接

镇场诗: 诚听如来语,顿舍世间名与利.愿做地藏徒,广演是经阎浮提. 愿尽吾所学,成就一良心博客.愿诸后来人,重现智慧清净体.------------------------------------------ code: 1 >>> print("hello"+"world") result: helloworld ------------------------------------------博文的精髓,在技术部分,更在镇场一诗.Python

SqlSever基础 select 用+号连接两个字符串

镇场诗:---大梦谁觉,水月中建博客.百千磨难,才知世事无常.---今持佛语,技术无量愿学.愿尽所学,铸一良心博客.------------------------------------------ 1 code 1 select '佛'+'道' 2 show ------------------------------------------博文的精髓,在技术部分,更在镇场一诗.SqlSever是优秀的语言,值得努力学习.熟悉数据库的增删查改,写程序必备.如果博文的内容有可以改进的地方,甚至

JavaScript基础 使用+号连接两个字符串

镇场诗: 清心感悟智慧语,不着世间名与利.学水处下纳百川,舍尽贡高我慢意. 学有小成返哺根,愿铸一良心博客.诚心于此写经验,愿见文者得启发.------------------------------------------ code: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=ut

C#控制台基础 string.concat连接多个int类型与double类型变量

1.代码 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication3 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 int num1 = 10; 14

JavaSE8基础 String equalsIgnoreCase 判断两个字符串的内容是否相同 (不区分大小写)

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 = "jizuiku"; String s2 = "a

JavaSE8基础 String equals 判断两个字符串的内容是否相同(区分大小写)

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 = "jizuiku"; String s2 = "abcdef&q

JavaSE8基础 String getBytes 汉字的对应两个byte与第二个byte是正数的汉字

os :windows7 x64    jdk:jdk-8u131-windows-x64    ide:Eclipse Oxygen Release (4.7.0) code: package jizuiku0; import java.util.Arrays; /* * @version V17.09 */ public class getByDemo { public static void main(String[] args) { //字母 数字 特殊符号 String s = "as

JavaSE8基础 String 通过构造方法把部分一维byte数组转为字符串

os :windows7 x64    jdk:jdk-8u131-windows-x64    ide:Eclipse Oxygen Release (4.7.0) code: package jizuiku0; /* * @version V17.09 */ public class StringBytesDemo { public static void main(String[] args) { byte[] bs = { 'a', 'b', 'c' };// 存储的是英文字母的asci

JavaSE8基础 String toCharArray 字符串转换成字符数组

os :windows7 x64    jdk:jdk-8u131-windows-x64    ide:Eclipse Oxygen Release (4.7.0)        code: package jizuiku.t01; public class Demo02 { public static void main(String[] args) { String str = "JavaSE8你好"; char[] c = str.toCharArray();//字符串转换成字