应一个大量字符串拼接的任务

测试一下StringBuilder、StringBuffer、String在操作字符串拼接时候的性能

性能上理论是StringBuilder  >  StringBuffer  >  String

测试方法:

创建一个StirngTest类含有静态常量字符串是26个字母,以及一个循环轮数

在测试时采用循环来操作字符串的拼接,计算操作时间并输出:

package com.test.xlc;

import java.util.Random;

public class StringTest {

    static final String strFinal = "abcdefghijklmnopqrstovwxyz";
static final int forInt = 100; static void StringBuilderTest() { Random rand = new Random(47);
StringBuilder strB = new StringBuilder();
long start = System.currentTimeMillis();
for(int i = 0; i < forInt; ++i) {
int randInt = rand.nextInt(23);
strB.append(strFinal.substring(randInt, randInt + 4));
}
long end = System.currentTimeMillis();
// System.out.println(strB.toString());
System.out.println("StringBuilderTest:" + (end - start));
} static void StringBufferTest() {
Random rand = new Random(47);
StringBuffer strB = new StringBuffer();
long start = System.currentTimeMillis();
for(int i = 0; i < forInt; ++i) {
int randInt = rand.nextInt(23);
strB.append(strFinal.substring(randInt, randInt + 4));
}
long end = System.currentTimeMillis();
// System.out.println(strB.toString());
System.out.println("StringBufferTest:" + (end - start));
} static void StringOnly() {
Random rand = new Random(47);
String str = "";
long start = System.currentTimeMillis();
for(int i = 0; i < forInt; ++i) {
int randInt = rand.nextInt(23);
str += strFinal.substring(randInt, randInt + 4);
}
long end = System.currentTimeMillis();
// System.out.println(str);
System.out.println("String:" + (end - start));
} public static void main(String...args) {
StringBuilderTest();
StringBufferTest();
StringOnly(); }
}

测试循环次数:

100

StringBuilderTest:0
StringBufferTest:0
String:0

1000

StringBuilderTest:1
StringBufferTest:0
String:7

10000

StringBuilderTest:2
StringBufferTest:2
String:217

100000

StringBuilderTest:12
StringBufferTest:10
String:17136

1000000

StringBuilderTest:55
StringBufferTest:53
我提前终止了

之后我又测试了拼接长串,本实验结果显示在拼接字符串的效率上:

StringBuffer  >    StringBuilder  >  String

Java中测试StringBuilder、StringBuffer、String在字符串拼接上的性能的更多相关文章

  1. [java] StringBuilder / StringBuffer / String 建立字符串

    1.三者在建立新字符串速度方面的比较: StringBuilder >  StringBuffer  >  String 2.线程安全性: StringBuilder:线程非安全的 Str ...

  2. Java中,那些关于String和字符串常量池你不得不知道的东西

    老套的笔试题 在一些老套的笔试题中,会要你判断s1==s2为false还是true,s1.equals(s2)为false还是true. String s1 = new String("xy ...

  3. JAVA 中的 StringBuilder 和 StringBuffer 适用的场景是什么?

    JAVA 中的 StringBuilder 和 StringBuffer 适用的场景是什么? 最简单的回答是,stringbuffer 基本没有适用场景,你应该在所有的情况下选择使用 stringbu ...

  4. JAVA StringBuilder StringBuffer String比较

    字符串连接时的效率: StringBuilder>StringBuffer>String 区别: StringBuilder效率最高,但是不是线程安全的,适用于单线程.多线程用String ...

  5. java中的数据类型,运算符,字符串,输入输出,控制流,大数值,数组; 《java核心技术卷i》 第三章:java基本程序结构;

    <java核心技术卷i> 第三章:java基本程序结构: 每次看书,去总结的时候,总会发现一些新的东西,这次对于java的数组有了更深的了解: java中的数据类型,运算符,字符串,输入输 ...

  6. java中int转成String位数不足前面补零

    java中int转成String位数不足前面补零 转载自:http://ych0108.iteye.com/blog/2174134 java中int转String位数不够前面补零 String.fo ...

  7. java中的switch用String作为条件

    在开发java程序的过程中,我们遇到了条件推断首选就是switch,可是java中的switch功能不支持字符串作为条件.这时我们该怎么办呢? --使用枚举. 一.枚举简单了解    1.enum是一 ...

  8. 如何在Java中测试类是否是线程安全的

    通过优锐课的java核心笔记中,我们可以看到关于如何在java中测试类是否线程安全的一些知识点汇总,分享给大家学习参考. 线程安全性测试与典型的单线程测试不同.为了测试一个方法是否是线程安全的,我们需 ...

  9. Java中toString()与new String()

    Java中toString()与new String(): 1.错误演示: FileInputStream fileIn = new FileInputStream(filePath);byte[] ...

随机推荐

  1. mysql 原理~ 乐观锁和悲观锁

    一 简介:今天咱们来聊聊悲观锁和乐观锁 二 悲观锁  1 定义   在关系数据库管理系统里,悲观并发控制(又名“悲观锁”,Pessimistic Concurrency Control,缩写“PCC” ...

  2. Python提示AttributeError 或者DeprecationWarning: This module was deprecated解决方法

    Python提示AttributeError 或者DeprecationWarning: This module was deprecated解决方法 在使用Python的sklearn库时,发现sk ...

  3. Java 文本I/O 处理

    File类包含获得一个文件/目录的属性,以及对文件/目录进行改名和删除的方法. File类包含许多获取文件属性的方法,以及重命名和删除文件和目录的方法,但是,File类不包含读写文件内容的方法 Fil ...

  4. SpringBoot使用Redis缓存

    (1).添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId&g ...

  5. jquery开发自定义的插件总结

    1.第一种方式,有元素的插件 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "htt ...

  6. nrm安装与使用

    1.什么是nrm nrm是一个npm源管理工具,使用它可以快速切换npm源. 2.安装 使用如下命令安装: npm install -g nrm 安装完后可使用 nrm -V 显示版本,注意是大写V. ...

  7. 【转】Python数据类型之“序列概述与基本序列类型(Basic Sequences)”

    [转]Python数据类型之“序列概述与基本序列类型(Basic Sequences)” 序列是指有序的队列,重点在"有序". 一.Python中序列的分类 Python中的序列主 ...

  8. caffe中 softmax 函数的前向传播和反向传播

    1.前向传播: template <typename Dtype> void SoftmaxLayer<Dtype>::Forward_cpu(const vector< ...

  9. linux暂停一个在运行中的进程【转】

    转自:https://blog.csdn.net/Tim_phper/article/details/53536621 转载于: http://www.cszhi.com/20120328/linux ...

  10. 在docker中部署centos7镜像

    本篇文章参考自: https://www.cnblogs.com/linjj/p/5606911.html https://blog.csdn.net/u012767761/article/detai ...