字符串、大数与数组
1. 字符串
1.1 字符串拼接
- 任何一个字符串与一个非字符串的值拼接起来,
非字符串
会转化成字符串
int age = 11;
String value = "my age:" + age;
// value的值为字符串"my age:13"
1.2 字符串部分方法
- int compareTo(String other)
- 字符串前面部分的每个字符完全一样,返回后面两个字符串长度差
- 字符串前面部分的每个字符存在不一样,返回出现不一样的字符 ASCII 码的差值
- 字符串的每个字符完全一样,返回 0
boolean isBlank():如果字符串为空(不能为 null )或者是空字符串或者存在空格,返回true,
该方法是 Java 11 新增的
boolean isEmpty():如果字符串为空(不能为 null )或者是空字符串,返回 true
-
boolean strip():去除字符串前后的全角和半角空白字符,
该方法是 Java 11 新增的
boolean trim():去除字符串前后的半角空白字符
-
String join(CharSequence delimiter, CharSequence ... elements):返回一个新的字符串,用给定的字符串连接所有的元素
String value = String.join("|", "hello", "world", "hhh"); // value的值为"hello|world|hhh"
-
String repeat(int count):返回一个字符串,将当前的字符串重复 count 次,
该方法是 Java 11 新增的
String value = "hello".repeat(3); // value的值为"hellohellohello"
1.3 StringBuilder 类和 StringBuffer 类
StringBuilder 类是 Java 5 中引入的,这个类的前身是 StringBuffer 类,StringBuilder 类的效率优于 StringBuffer
,因为 StringBuffer 类采用多线程的方式操作字符串,但是 StringBuilder 类采用单线程的方式操作字符串,因而 StringBuffer 类是一个线程安全的类
,但是 StringBuilder 类不是一个线程安全的类
- 如果要操作少量数据,使用 String 即可
- 如果要快速操作大量数据,但是线程安全不需要考虑,使用 StringBuilder
- 如果要保证线程安全的前提下操作大量数据,使用 StringBuffer
2. 大数
2.1 BigInteger 类和 BigDecimal 类
可以使用 valueof()
方法或者字符串
的形式实例化 BigInteger 和 BigDecimal 类
BigInteger value = BigInteger.valueof(100);
BigInteger value = new BigInteger("4123523793279382031471423648919141");
BigDecimal value = BigDecimal.valueof(100.891);
BigDecimal value = new BigDecimal("5414325134.5352442314");
2.2 常用方法
- BigInteger add(BigInteger other) / BigDecimal add(BigDecimal other) :加法
- BigInteger subtract(BigInteger other) / BigDecimal subtract(BigDecimal other):减法
- BigInteger multiply(BigInteger other) / BigDecimal multiply(BigDecimal other):乘法
- BigInteger divide(BigInteger other) / BigDecimal divide(BigDecimal other):除法
-
BigDecimal divide(BigDecimal other, RoundingMode mode):如果除不尽,要想得到结果,可以使用
RoundingMode
类中的常量 - RoundingMode.CEILING:取右边最近的整数
- RoundingMode.DOWN:去掉小数部分取整,也就是正数取左边,负数取右边,相当于向原点靠近的方向取整
- RoundingMode.FLOOR:取左边最近的正数
- RoundingMode.HALF_DOWN:五舍六入,负数先取绝对值再五舍六入再负
- RoundingMode.HALF_UP:四舍五入,负数原理同上
- RoundingMode.HALF_EVEN:这个比较绕,整数位若是奇数则四舍五入,若是偶数则五舍六入
- BigInteger mod(BigInteger other):取模
-
BigInteger sqrt():取平方根(
Java 9 新增
) - int compareTo(BigInteger other) / int compareTo(BigDecimal other):两个大数比较,如果相等,返回 0,如果小于 other,返回负数,如果大于 other,返回正数
- static BigInteger valueof(long x) / static BigDecimal valueof(long x):得到一个等于 x 的大实数
- static BigDecimal valueof(long x, int scale):得到一个等于 x / 10 ^ scale 的大实数
2.3 相关常量
BigInteger.ZERO, BigInteger.ONE,BigInteger.TEN,BigInteger.TWO(Java 9 新增
)
3. 数组
3.1 Arrays类常用方法
static xxx[] copyOf(xxx[] a, int end) / static xxx[] copyOfRange(xxx[] a, int start, int end):返回与 a 类型相同的一个数组,其长度为 length 或者为 end - start,数组元素为 a 的值,如果 end 大于 a.length,结果会填充 0 或 false 值
static void sort(xxx[] a):使用快速排序算法对数组进行排序
static int binarySearch(xxx[] a, xxx v) / static int binarySearch(xxx[] a, int start, int end, xxx v):使用二分查找在有序数组 a 中查找值 v,如果找到,则返回相应的下标,否则,返回一个负数 r,-r - 1 是值 v 应该插入的位置(为保持 a 有序)
static void fill(xxx[] a, xxx v):将数组所有元素设置为 v
static boolean equals(xxx[] a, xxx[] b):如果两个数组大小相同,并且下标相同的元素都对应相等,则返回 true
static String deepToString(Object[] a):将多维数组打印出来