Can one initialize a Java string with a single repeated character to a specific length(可以将具有单个重复字符的Java字符串初始化为特定长度吗)
问题描述
我想创建一个具有以下签名的函数:
I'd like to create a function that has the following signature:
public String createString(int length, char ch)
它应该返回一个指定长度的重复字符的字符串.
例如,如果长度为 5 且 ch 为 'p',则返回值应为:
It should return a string of repeating characters of the specified length.
For example if length is 5 and ch is 'p' the return value should be:
ppppp
有没有办法做到这一点而无需循环直到达到所需的长度?
并且没有任何外部定义的常量?
Is there a way to do this without looping until it is the required length?
And without any externally defined constants?
推荐答案
char[] chars = new char[len];
Arrays.fill(chars, ch);
String s = new String(chars);
这篇关于可以将具有单个重复字符的Java字符串初始化为特定长度吗的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:可以将具有单个重复字符的Java字符串初始化为特定长度吗
基础教程推荐
- 如何对 Java Hashmap 中的值求和 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
