码迷,mamicode.com
首页 > 其他好文 > 详细

6、字符串生成器 String-Builder

时间:2014-12-15 13:32:37      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   sp   for   on   div   art   

package com.xxx.xxx;

public class demo7 {

    /**
     * 字符串生成器    
     * J2SE 可变的字符串序列    String-Builder类
     * @param args
     */
    public static void main(String[] args) {
        String str = "";    //创建空字符串
        //定义对字符串执行操作的起始时间
        long startTime = System.currentTimeMillis();
        for(int i = 0; i < 1000; i++){    //利用 for 循环执行1000次
            str = str + i;    //循环追加字符串
        }
        long endTime = System.currentTimeMillis();    //定义对字符串操作后的时间
        long time = endTime - startTime;        //计算对字符串执行的时间
        System.out.println("Str 消耗时间:"+time);
        //创建字符串
        StringBuilder builder = new StringBuilder("");
        startTime = System.currentTimeMillis();    //定义操作执行前的时间
        for(int j = 0; j < 100000 ; j++ ){
            builder.append(j);        //循环追加字符串
            //System.out.println(builder.append(j));
        }
        endTime = System.currentTimeMillis();
        time = endTime - startTime;
        System.out.println("StringBuilder 消耗时间:"+time);
        
        
    }

}

 

6、字符串生成器 String-Builder

标签:style   blog   ar   color   sp   for   on   div   art   

原文地址:http://www.cnblogs.com/spadd/p/4164494.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!