位置:首頁 > Java技術 > java實例教學 > 字符串創建性能比較-Java實例

字符串創建性能比較-Java實例

如何比較字符串創建的性能呢?

解決方法

下麵的示例以兩種不同方式創建兩個字符串的性能進行比較。

public class StringComparePerformance{
   public static void main(String[] args){      
      long startTime = System.currentTimeMillis();
      for(int i=0;i<50000;i++){
         String s1 = "hello";
         String s2 = "hello"; 
      }
      long endTime = System.currentTimeMillis();
      System.out.println("Time taken for creation" 
      + " of String literals : "+ (endTime - startTime) 
      + " milli seconds" );       
      long startTime1 = System.currentTimeMillis();
      for(int i=0;i<50000;i++){
         String s3 = new String("hello");
         String s4 = new String("hello");
      }
      long endTime1 = System.currentTimeMillis();
      System.out.println("Time taken for creation" 
      + " of String objects : " + (endTime1 - startTime1)
      + " milli seconds");
   }
}

結果

上麵的代碼示例將產生以下結果。該結果可能會不同。

Time taken for creation of String literals : 0 milli seconds
Time taken for creation of String objects : 16 milli seconds