发现 Java 21 的 StringBuilder
和StringBuffer
中多了 repeat 办法:
/**
* @throws IllegalArgumentException {@inheritDoc}
*
* @since 21
*/
@Override
public StringBuilder repeat(int codePoint, int count) {super.repeat(codePoint, count);
return this;
}
/**
* @throws IllegalArgumentException {@inheritDoc}
*
* @since 21
*/
@Override
public StringBuilder repeat(CharSequence cs, int count) {super.repeat(cs, count);
return this;
}
依据名字猜猜是干嘛的?试试上面的代码:
var sb = new StringBuilder().repeat("*", 10);
System.out.println(sb);
最初会输入:
**********
另一个
repeat
办法第一个参数是codePoint
,指得应该是 UniCode 字符集中的 codePoint,所以这个办法的 repeat 是针对 UniCode 字符的。
一时间仿佛想不到什么特地大的用户,就想到能够用来快捷的构建一些文本类的分隔符?你感觉还有其余什么妙用吗?一起聊聊~ 如果您学习过程中如遇艰难?能够退出咱们超高品质的技术交换群,参加交换与探讨,更好的学习与提高!另外,不要走开,关注我!继续更新 Java 新个性专栏!
欢送关注我的公众号:程序猿 DD。第一工夫理解前沿行业音讯、分享深度技术干货、获取优质学习资源