专业的JAVA编程教程与资源

网站首页 > java教程 正文

Java 11 已发布,体验一下String 的新玩法!

temp10 2024-09-03 21:46:32 java教程 15 ℃ 0 评论

新方法

Java 11 增加了一系列的字符串处理方法,如以下所示。

// 判断字符串是否为空白
" ".isBlank(); // true
// 去除首尾空格
" NDEducation ".strip(); // "NDEducation "
// 去除尾部空格 
" NDEducation ".stripTrailing(); // " NDEducation"
// 去除首部空格 
" NDEducation ".stripLeading(); // "NDEducation "
// 复制字符串
"Nde".repeat(3); // "NdeNdeNde"
// 行数统计
"A\nB\nC".lines().count(); // 3

最有意思的是 repeat 和 lines 方法了,来看下还能怎么玩!

Java 11 已发布,体验一下String 的新玩法!

repeat

repeat 方法的作用就是重复一个字符串 N 遍,可以用来代替工具类:org.apache.commons.lang3.StringUtils#repeat(java.lang.String, int),来看下 repeat 的源码。

public String repeat(int count) {
 if (count < 0) {
 throw new IllegalArgumentException("count is negative: " + count);
 }
 if (count == 1) {
 return this;
 }
 final int len = value.length;
 if (len == 0 || count == 0) {
 return "";
 }
 if (len == 1) {
 final byte[] single = new byte[count];
 Arrays.fill(single, value[0]);
 return new String(single, coder);
 }
 if (Integer.MAX_VALUE / count < len) {
 throw new OutOfMemoryError("Repeating " + len + " bytes String " + count +
 " times will produce a String exceeding maximum size.");
 }
 final int limit = len * count;
 final byte[] multiple = new byte[limit];
 System.arraycopy(value, 0, multiple, 0, len);
 int copied = len;
 for (; copied < limit - copied; copied <<= 1) {
 System.arraycopy(multiple, 0, multiple, copied, copied);
 }
 System.arraycopy(multiple, 0, multiple, copied, limit - copied);
 return new String(multiple, coder);
}

来看下更多的用法。

String str = "Java";
// 小于0:java.lang.IllegalArgumentException
System.out.println(str.repeat(-2));
// 等于0:空白串("")
System.out.println(str.repeat(0));
// JavaJavaJava
System.out.println(str.repeat(3));
// java.lang.OutOfMemoryError
System.out.println(str.repeat(Integer.MAX_VALUE));

所以说 repeat 并不是可以无限增长的,有使用限制的,达到一定量就会报内存溢出异常。

lines

public Stream<String> lines() {
 return isLatin1() ? StringLatin1.lines(value)
 : StringUTF16.lines(value);
}

lines 方法返回一个字符串 Stream, 可以识别 \n 和 \r 换行符换行。

// 4
System.out.println("A\nB\nC\rD".lines().count());

是不是很好?在将来肯定有武之地!如批量读取文件内容到一个 Stream 中,就能很好的识别行结束符了。


Tags:

本文暂时没有评论,来添加一个吧(●'◡'●)

欢迎 发表评论:

最近发表
标签列表