String-StringBuffer-StringBuilder,Comparable-comparator
String
- 1.String是final类,不可被继承
- 2.内部是value[]的数组
private final char value[];
- 3.不可变字符串
String s1 = "abc"; //字面量方式,"abc"被放到了常量池中
String s2 = "abc"; //这里s1 和 s2指向同一个地址
//这里想要修改s1,但是不能修改s1,实际它是ccc被放到另外一个地址,
//这里把ccc的地址赋给了s1, s2还是指向abc的地址
s1 = "ccc";
s3 = s1 + "def"; //结果abcdef;这里把abcdef的地址赋值给了s3,s1还是指向abc的地址
测试
String s1="hello";
String s2="world";
String s3="hello"+"world";
String s4=s1+"world";
String s5=s1+s2;
String s6=(s1+s2). intern();
System.out.print1n(s3==s4);//false
System.out.printin(s3==s5);//false
System.out.print1n(s4==s5);//false
System.out.print1n(s3==s6);//true
/**结论
1. 常量与常量的拼接结果在常量池。且常量池中不会存在相同内容的常量。
2. 只要其中有一个是变量,结果就在堆中
3. 如果拼接的结果调用intern()方法,返回值就在常量池中
*/
StringBuffer
- 可变字符序列,线程安全,效率低,底层使用char[] 存储
源码刨析:和(StringBuilder类似)
// StringBuffer类是final,不可被继承,且继承了AbstractStringBuilder类
public final class StringBuffer
extends AbstractStringBuilder
implements java.io.Serializable, CharSequence
//该类是AbstractStringBuilder抽象的
abstract class AbstractStringBuilder implements Appendable, CharSequence{
char[] value; //string底层是数组,且非final的,表示可变string
int count; //count记录数组里面有几个真实的元素
}
//以此为例
new StringBuffer("abc");
public StringBuffer(String str) {
super(str.length() + 16); //①,调用父类(AbstractStringBuilder)的构造器
append(str); //②,把str="abc"添加到value数组中
}
//①
AbstractStringBuilder(int capacity) {
value = new char[capacity]; //底层是数组,创建了capacity = 19的数组
}
//②
@Override
public synchronized StringBuffer append(String str) {
toStringCache = null;
super.append(str); //③,调用父类的append方法
return this; //返回当前对象
}
//③
public AbstractStringBuilder append(String str) {
if (str == null)
return appendNull(); //④ 把“null”加入value数组中
int len = str.length();
ensureCapacityInternal(count + len);//⑤扩容检查,count = 0,len = 3
str.getChars(0, len, value, count);//⑦ 把str加入到vlaue[]中
count += len;
return this;
}
//④
private AbstractStringBuilder appendNull() {
int c = count;
ensureCapacityInternal(c + 4); //检查数组长度是否够用
final char[] value = this.value; //定义final变量,表示该数组 引用 不可修改
value[c++] = 'n';
value[c++] = 'u';
value[c++] = 'l';
value[c++] = 'l';
count = c;
return this;
}
//⑤
private void ensureCapacityInternal(int minimumCapacity) {
// overflow-conscious code,容量不够则扩容
if (minimumCapacity - value.length > 0) { //3-19,
value = Arrays.copyOf(value,
newCapacity(minimumCapacity)); //⑥
}
}
//⑥
private int newCapacity(int minCapacity) {
// overflow-conscious code,value的长度*2+2;
int newCapacity = (value.length << 1) + 2;
if (newCapacity - minCapacity < 0) {
newCapacity = minCapacity;
}
return (newCapacity <= 0 || MAX_ARRAY_SIZE - newCapacity < 0)
? hugeCapacity(minCapacity)
: newCapacity;
}
//⑦
public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) {
if (srcBegin < 0) {
throw new StringIndexOutOfBoundsException(srcBegin);
}
if (srcEnd > value.length) {
throw new StringIndexOutOfBoundsException(srcEnd);
}
if (srcBegin > srcEnd) {
throw new StringIndexOutOfBoundsException(srcEnd - srcBegin);
}
System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin); //添加字符串到value数组中
}
StringBuffer中定义了这样一个变量
//StringBuffer中定义了这样一个变量
private transient char[] toStringCache;
/**
看toString()方法
*/
@Override
public synchronized String toString() {
if (toStringCache == null) {
toStringCache = Arrays.copyOfRange(value, 0, count);
}
return new String(toStringCache, true);
}
//StringBuilder的toString()
@Override
public String toString() {
// Create a copy, don't share the array
return new String(value, 0, count);
}
StringBuilder
- 可变字符序列,线程不安全,效率高,底层使用char[] 存储
三者效率问题(从高到低): StringBuilder > StringBuffer > String
Comparable,Comparator
- String,包装类等重写了compareTo()方法,默认按照从小到大排序
- Comparable:自然排序,位于java-lang包下
- Comparator:定制排序,位于java-util包下
//example 1: String实现了Comparable接口.并且重写了compareTo()方法
String[] strings = new String[]{"d","a","c","b"};
Arrays.sort(strings);
System.out.println(Arrays.toString(strings)); //result:[a, b, c, d]
//example 2: 自定义类让其继承Comparable接口
/**
结果:
[ Goods{name='dell', price=15},
Goods{name='apache', price=25},
Goods{name='xiaomi', price=25},
Goods{name='huawei', price=35},
Goods{name='lenovo', price=55}
]
/
public class CompareTest {
public static void main(String[] args) {
Goods[] goods = new Goods[5];
goods[0] = new Goods("xiaomi",25);
goods[1] = new Goods("dell",15);
goods[2] = new Goods("lenovo",55);
goods[3] = new Goods("huawei",35);
goods[4] = new Goods("apache",25);
Arrays.sort(goods);
System.out.println(Arrays.toString(goods));
}
}
class Goods implements Comparable<Goods>{
private String name;
private int price;
public Goods() {
}
public Goods(String name, int price) {
this.name = name;
this.price = price;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getPrice() {
return price;
}
public void setPrice(int price) {
this.price = price;
}
@Override
public String toString() {
return "Goods{" +
"name='" + name + '\'' +
", price=" + price +
'}';
}
/**
* 先按照价格从小到大排序,再按照名称从小到大排序
* */
@Override
public int compareTo(Goods o) {
if (this.getPrice() != o.getPrice())
return Double.compare(this.getPrice(),o.getPrice()); //double的包装类 的排序
else
return getName().compareTo(o.getName()); //String的排序
}
}
//也可以用Comparator接口
public static void main(String[] args) {
Goods[] goods = new Goods[5];
goods[0] = new Goods("xiaomi",25);
goods[1] = new Goods("dell",15);
goods[2] = new Goods("lenovo",55);
goods[3] = new Goods("huawei",35);
goods[4] = new Goods("xiaomi",15);
//Arrays.sort(goods);
Arrays.sort(goods, new Comparator<Goods>() {
@Override
public int compare(Goods o1, Goods o2) {
//先按照名称从小到大排序,再按照价格升序
if (o1.getName().equals(o2.getName()))
return Double.compare(o1.getPrice(),o2.getPrice());
return o1.getName().compareTo(o2.getName());
}
});
System.out.println(Arrays.toString(goods));
}
/**
结果:
[ Goods{name='dell', price=15},
Goods{name='huawei', price=35},
Goods{name='lenovo', price=55},
Goods{name='xiaomi', price=25},
Goods{name='xiaomi', price=15}
]
*/
String-StringBuffer-StringBuilder,Comparable-comparator的更多相关文章
- [置顶] String StringBuffer StringBuilder的区别剖析
这是一道很常见的面试题目,至少我遇到过String/StringBuffer/StringBuilder的区别:String是不可变的对象(final)类型,每一次对String对象的更改均是生成一个 ...
- String | StringBuffer | StringBuilder 比较
2016的第一天,我决定写一篇博客来纪念这一天,希望一年好运吧. String|StringBuffer|StringBuilder这三者在我们学习JAVASE核心API的时候常常出来,而且大多数入门 ...
- java中 String StringBuffer StringBuilder的区别
* String类是不可变类,只要对String进行修改,都会导致新的对象生成. * StringBuffer和StringBuilder都是可变类,任何对字符串的改变都不会产生新的对象. 在实际使用 ...
- String,StringBuffer,StringBuilder的区别
public static void main(String[] args) { String str = new String("hello...."); StringBuffe ...
- 关于String StringBuffer StringBuilder
0. String对象的创建 1.关于类对象的创建,很普通的一种方式就是利用构造器,String类也不例外:String s=new String("Hello world&qu ...
- Java学习笔记--String StringBuffer StringBuilder
String StringBuffer StringBuilder String http://docs.oracle.com/javase/7/docs/api/ 中文: http://www.cn ...
- String StringBuffer StringBuilder (转)
转自:http://www.iteye.com/topic/522167 众所周知,String是由字符组成的串,在程序中使用频率很高.Java中的String是一个类,而并非基本数据类型. 不过她却 ...
- 【Java基础】String StringBuffer StringBuilder
String String是不可变的 我们都知道String不是基本数据类型,而是一个对象,并且是final类型的,不可变的.(public final class String) 查看以下代码: S ...
- String,StringBuffer,StringBuilder的区别及其源码分析
String,StringBuffer,StringBuilder的区别这个问题几乎是面试必问的题,这里做了一些总结: 1.先来分析一下这三个类之间的关系 乍一看它们都是用于处理字符串的java类,而 ...
- final,finally,finalize有什么区别?String, StringBuffer, StringBuilder有什么区别?Exception和Error有什么区别?
继上篇JVM学习之后,后面将分三期深入介绍剩余JAVA基础面试题,每期3题. 题目一.final,finally,finalize有什么区别? /*请尊重作者劳动成果,转载请标明原文链接:*/ /* ...
随机推荐
- 纯css 实现充电动画
<template> <div class="container"> <div class="header">& ...
- 2021.11.09 P2292 [HNOI2004]L语言(trie树+AC自动机)
2021.11.09 P2292 [HNOI2004]L语言(trie树+AC自动机) https://www.luogu.com.cn/problem/P2292 题意: 标点符号的出现晚于文字的出 ...
- vue--vuex 中 Modules 详解
前言 在Vue中State使用是单一状态树结构,应该的所有的状态都放在state里面,如果项目比较复杂,那state是一个很大的对象,store对象也将对变得非常大,难于管理.于是Vuex中就存在了另 ...
- GAIA-IR: GraphScope 上的并行化图查询引擎
在本文中,我们将介绍 GraphScope 图交互式查询引擎 GAIA-IR,它支持高效的 Gremlin 语言表达的交互图查询,同时高度抽象了图上的查询计算,具有高可扩展性. 背景介绍 在海量数据的 ...
- 攻防世界-MISC:ext3
这是攻防世界新手练习区的第九题,题目如下: 点击下载附件1,通过题目描述可知这是一个Linux系统光盘,用010editor打开,搜索flag,发现存在flag.txt文件 将该文件解压,找到flag ...
- Linux-ssh-key验证
ssh登录验证方式介绍 ssh服务登录的常用验证方式 用户/口令 基于密钥 基于用户和口令登录验证 客户端发起ssh请求,服务器会把自己的公钥发送给用户 用户会根据服务器发来的公钥对密码进行加密 加密 ...
- 关于5G技术,这是我见过最通俗易懂的讲解了
公众号关注 「开源Linux」 回复「学习」,有我为您特别筛选的学习资料~ 1 一个简单且神奇的公式 今天的故事,从一个公式开始讲起. 这是一个既简单又神奇的公式.说它简单,是因为它一共只有 3 个字 ...
- Keepalived入门学习
一个执着于技术的公众号 Keepalived简介 Keepalived 是使用C语言编写的路由热备软件,该项目软件起初是专门为LVS负载均衡设计的,用来管理并监控LVS集群系统中各个服务节点的状态,后 ...
- 攻防世界web进阶题—bug
攻防世界web进阶题-bug 1.打开题目看一下源码,没有问题 2.扫一下目录,没有问题 3.查一下网站的组成:php+Apache+Ubuntu 只有登录界面 这里可以可以想到:爆破.万能密码.进行 ...
- numpy学习Ⅱ
今天有空再把numpy看一下,补充点不会的,再去看matplotlib 回顾之前笔记,发现之前的numpy学习Ⅰ中关于numpy的行.列.维可能表述有点不清晰,这里再叙述一下 import numpy ...