博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java中两个判断字符串是否为空的方法的执行效率比较的代码
阅读量:6271 次
发布时间:2019-06-22

本文共 1199 字,大约阅读时间需要 3 分钟。

把写内容过程中比较常用的内容段做个收藏,如下的内容段是关于Java中两个判断字符串是否为空的方法的执行效率比较的内容。

public class Test4

{
public static void main(String[] args)
{
long times = 999999999;
String str = "";

long a1 = System.currentTimeMillis();      for (long i = 0; i < times && str.isEmpty(); i++)      {      }      long a2 = System.currentTimeMillis();      System.out.println("str.isEmpty() times: " + (a2 - a1));      long b1 = System.currentTimeMillis();      for (long i = 0; i < times && "".equals(str); i++)      {      }      long b2 = System.currentTimeMillis();      System.out.println(""".equals(str) times: " + (b2 - b1));  }  复制代码

}

输出结果如下:

str.isEmpty() times: 2735

"".equals(str) times: 10516

其实看下源码很快就发现问题所在

isEmpty()函数的源码

public boolean isEmpty() {

return count == 0;
}

equals的源码

public boolean equals(Object anObject) {

if (this == anObject) {
return true;
}
if (anObject instanceof String) {
String anotherString = (String)anObject;
int n = count;
if (n == anotherString.count) {
char v1[] = value;
char v2[] = anotherString.value;
int i = offset;
int j = anotherString.offset;
while (n-- != 0) {
if (v1[i++] != v2[j++])
return false;
}
return true;
}
}
return false;
}

转载于:https://juejin.im/post/5cc50b1b5188252513016417

你可能感兴趣的文章
input checkbox 复选框大小修改
查看>>
网吧维护工具
查看>>
BOOT.INI文件参数
查看>>
vmstat详解
查看>>
新年第一镖
查看>>
unbtu使用笔记
查看>>
MaxCompute 学习计划(一)
查看>>
OEA 中 WPF 树型表格虚拟化设计方案
查看>>
Android程序开发初级教程(一) 开始 Hello Android
查看>>
使用Gradle打RPM包
查看>>
“我意识到”的意义
查看>>
淘宝天猫上新辅助工具-新品填表
查看>>
再学 GDI+[43]: 文本输出 - 获取已安装的字体列表
查看>>
nginx反向代理
查看>>
操作系统真实的虚拟内存是什么样的(一)
查看>>
hadoop、hbase、zookeeper集群搭建
查看>>
python中一切皆对象------类的基础(五)
查看>>
modprobe
查看>>
android中用ExpandableListView实现三级扩展列表
查看>>
%Error opening tftp://255.255.255.255/cisconet.cfg
查看>>