String类对象个数与拼接结果等解析

  • 1、面试题
    (1)String str = new String(“hello”);几个对象
@Test
	public void test01(){
		String str = "hello";//一个字符串对象
	}

@Test
	public void test02(){
		String str = new String("hello");//两个字符串对象
		//一个在常量池中:hello
		//另一个在堆中,String的对象
		//堆中的这个字符串对象char[]的value数组,指向常量池中"hello"的char[]的value
	}

(2)String str1 = new String(“hello”);
String str2 = new String(“hello”);几个对象

@Test
	public void test03(){
		String str1 = new String("hello");
		String str2 = new String("hello");
		
		//这两行代码,几个对象?3个
	}
  • 2、拼接的结果在堆还是在常量池?

  • 因为只有常量池中才是共享,==比较才为true

  • (1)常量 + 常量在常量池

  • (2)变量 +常量在堆

  • (3)变量 + 变量在堆

  • (4)xx.intern():在常量池

@Test
	public void test04(){
		String s1 = "hello";
		String s2 = "world";
		String s3 = "helloworld";
		
		String s4 = s1 + "world";//s4字符串内容也helloworld,s1是变量,"world"常量,变量 + 常量的结果在堆中
		String s5 = s1 + s2;//s5字符串内容也helloworld,s1和s2都是变量,变量 + 变量的结果在堆中
		String s6 = "hello" + "world";//常量+ 常量 结果在常量池中,因为编译期间就可以确定结果
		
		System.out.println(s3 == s4);//false
		System.out.println(s3 == s5);//false
		System.out.println(s3 == s6);//true
	}


@Test
	public void test05(){
		final String s1 = "hello";
		final String s2 = "world";
		String s3 = "helloworld";
		
		String s4 = s1 + "world";//s4字符串内容也helloworld,s1是常量,"world"常量,常量+ 常量 结果在常量池中
		String s5 = s1 + s2;//s5字符串内容也helloworld,s1和s2都是常量,常量+ 常量 结果在常量池中
		String s6 = "hello" + "world";//常量+ 常量 结果在常量池中,因为编译期间就可以确定结果
		
		System.out.println(s3 == s4);//true
		System.out.println(s3 == s5);//true
		System.out.println(s3 == s6);//true
	}

@Test
	public void test06(){
		String s1 = "hello";
		String s2 = "world";
		String s3 = "helloworld";
		
		String s4 = (s1 + "world").intern();//把拼接的结果放到常量池中
		String s5 = (s1 + s2).intern();
		
		System.out.println(s3 == s4);//true
		System.out.println(s3 == s5);//true
	}
  • 3、空字符串
  • (1)""
  • (2)new String()
  • (3)new String("")
@Test
	public void test07(){
		String s1; //局部变量未初始化
		String s2 = null;//初始化null
		String s3 = "";//空字符串常量对象
		String s4 = new String();//空字符串对象
		String s5 = new String("");//两个对象,一个是常量池中的,一个是堆中
		
//		System.out.println(s1);//无法使用
//		System.out.println(s2.length());//空指针异常
		
		System.out.println(s3.length());
		System.out.println(s4.length());
		System.out.println(s5.length());
	}
  • 四种方式:
  • (1)if(str != null && str.length() == 0)
  • (2)if(str != null && str.equals("")){
  • (3)if("".equals(str)) 推荐
  • (4)if(str!=null && str.isEmpty())
@Test
	public void test08(){
		String str = null;
		System.out.println(test(str));
		
		String str2 = "";
		System.out.println(test(str2));
	}
	
	//判断str是否是空字符串,是就返回true,不是返回false
	public boolean test(String str){
		if(str!=null && str.isEmpty()){
			return true;
		}
		return false;
	}
	/*public boolean test(String str){
		if("".equals(str)){//推荐
			return true;
		}
		return false;
	}*/
	/*public boolean test(String str){
		if(str != null && str.equals("")){
			return true;
		}
		return false;
	}*/
/*	public boolean test(String str){
		if(str != null && str.length() == 0){
			return true;
		}
		return false;
	}*/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值