可以使用单个重复字符将 Java 字符串初始化为特定长度吗 [英] Can one initialize a Java string with a single repeated character to a specific length

查看:32
本文介绍了可以使用单个重复字符将 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:

pppp

有没有办法在不循环的情况下做到这一点,直到达到所需的长度?
并且没有任何外部定义的常量?

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 字符串初始化为特定长度吗的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆