string与stringbuffer的性能对比

string与stringbuffer常见于java面试中,以下为string与strinbuffer性能对比示例的java代码 以下为执行5000次的字符串边接。

 

 

package com.buyli.interview.baseinfo;

/**
 * @Copyright @ 2012
 * All right reserved
 * @version 创建时间:Created on 2012-11-21
 * @author 作者:Create by www.360buyli.com
 * @Email : [email protected]
 * @description 用于测试string与StringBuffer的性能差异
 */

public class StringInterview {
 
 public static void main(String[] args) {
  String result="";
  StringBuffer sbResult=new StringBuffer();
  int count=5000;//代表连接字符串的次数
  
  long startTime=System.currentTimeMillis();
  for (int i = 0; i <count; i++) {
   result=result+"a";
  }
  System.out.println("string时间差:"+(System.currentTimeMillis()-startTime));
  
   startTime=System.currentTimeMillis();
  for (int i = 0; i <count; i++) {
   sbResult.append("a");
  }
  System.out.println("stringbuffer时间差:"+(System.currentTimeMillis()-startTime));
 }
}

示例结果:
 string时间差:32
stringbuffer时间差:0

你可能感兴趣的:(string与stringbuffer的性能对比)