String三个注意事项

1、检查String是否相等

如上文提到的,检查String是否相等最好要使用equals方法,尽量少使用==操作符。

String cmower ="cmower";

System.out.println("cmower" == cmower);//true
System.out.println("cmower".equals(cmower));//true
System.out.println("cmower".substring(0, 3) == "cmo");//false
System.out.println("cmower".substring(0, 3).equals("cmo"));//true
 
 
  • String cmower ="cmower";
    
    System.out.println("cmower" == cmower);//true
    System.out.println("cmower".equals(cmower));//true
    System.out.println("cmower".substring(0, 3) == "cmo");//false
    System.out.println("cmower".substring(0, 3).equals("cmo"));//true

    1
  • 2
  • 3
  • 4
  • 5
  • 6
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      
      
         
         
      1. ==操作符确定的是两个String是否放在同一个位置上。
      2. “cmower”字符串和cmower变量指向的引用就是在同一个位置上,所以==比较结果为true。
      3. 在Java虚拟机上,只有字符串常量是共享的(”cmower”字符串和cmower变量共享了同一个地址)。但是对于substring产生的结果就不共享了。
      4. 对于equals,比较的则是两个对象是否具有相同的字符集。

      Compares this string to the specified object. The result is true if and only if the argument is not null and is a String object that represents the same sequence of characters as this object.

      2、String不可变

      public static void main(String[] args) {
          String s = "s";
          String ss = toUpper(s);
          System.out.println(s);//s
          System.out.println(ss);//S
      }
      
      private static String toUpper(String b) {
          String bb = b.toUpperCase();
      
          System.out.println(b);//s
          return bb;
      }
          
          
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
      • 12
      • 13
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
      • 12
      • 13

      “s”是一个字符串对象,你怎么也不能把这个对象变成“S”。也就是说小s和大S尽管是双胞胎,但她们俩注定都不能成为对方。

      3、+与StringBuilder

      首先,我们先来看对于+操作符,在Java虚拟机下是如何工作的。

      public static String add1() {
          String b = "b";
          String s = "a" + b + "c" + "d" + 100;
          return s;
      }
      
      public static String add2() {
          String s = "a" + "b" + "c" + "d" + 100;
          return s;
      }
          
          
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10

      对于add1和add2方法,你认为Java虚拟机的工作方式一样吗?

      闭上眼睛10秒钟,先想一会。


      我们来揭晓答案: 

      差别是不是很大?

      这说明,+操作符在拼接String时,会根据情况做一定的选择。比如add1方法,Java会new 一个StringBuilder对象,来对abcd100进行append操作,之后再toString出来。

      那么也就说,Java会自动会为我们优化代码,以后我们尽管使用+操作符就行了。但事实并非如此,再来看一串代码。

      public static String plus() {
          String result = "";
          for (int i = 0; i < 10; i++) {
              result += "a";
          }
          return result;
      }
      
      public static String sb() {
          StringBuilder sb = new StringBuilder();
          for (int i = 0; i < 10; i++) {
              sb.append("a");
          }
          return sb.toString();
      }
          
          
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
      • 12
      • 13
      • 14
      • 15
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 9
      • 10
      • 11
      • 12
      • 13
      • 14
      • 15

      这个时候,你选择用sb方法还是plus方法?

      再闭上眼睛10秒钟,想一下你的答案。


      javap执行结果如下: 

      看得出plus方法的8-34行是一个循环,11行时创建了StringBuilder对象,也就是在循环内。这个方法执行了10次,那么也就创建了10个StringBuilder对象。

      再来看sb方法的结果: 
      显而易见,StringBuilder对象只有一个。

      在使用StringBuilder时,尽量少“在append方法的参数中使用+操作符”:

      public static String sb1() {
          StringBuilder sb = new StringBuilder();
          String b = "b";
          for (int i = 0; i < 10; i++) {
              sb.append("a" + b);
          }
          return sb.toString();
      }
          
          
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8
      • 1
      • 2
      • 3
      • 4
      • 5
      • 6
      • 7
      • 8

      这样做糟糕至极: 

      “a” + b时又重新创建了StringBuilder对象。

      总结如下, 
      1. 在进行循环多次拼接String时,用StringBuilder而不用+操作符! 
      2. +操作符只用于少量字符串变量拼接,在内存中操作,性能更高! 
      3. append方法的参数少用+操作符!

    评论
    添加红包

    请填写红包祝福语或标题

    红包个数最小为10个

    红包金额最低5元

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

    抵扣说明:

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

    余额充值