91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中String.repeat()的作用是什么

發布時間:2021-07-01 15:33:05 來源:億速云 閱讀:239 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關Java中String.repeat()的作用是什么,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

String.repeat() 

此方法返回一個字符串,該字符串的值是給定字符串的重復 count 次的串聯。如果字符串為空或 count 為零,則返回空字符串。

/**
* Parameters:
* count - number of times to repeat
* 
* Returns:
* A string composed of this string repeated count times or the empty string if this string is empty or count is zero
* 
* Throws:
* IllegalArgumentException - if the count is negative.
*/

public String repeat(int count)

Java程序將字符串" Abc"重復3次。

public class Main 
{
	public static void main(String[] args) 
	{
		String str = "Abc";

		System.out.println( str.repeat(3) );
	}
}

程序輸出。

AbcAbcAbc

匹配重復字符串

如果您正在使用JDK <= 10,則可以考慮使用regex將字符串重復N次。

Java程序將字符串" Abc"重復3次。

public class Main 
{
	public static void main(String[] args) 
	{
		String str = "Abc";

		String repeated = new String(new char[3]).replace("\0", str);

		System.out.println(repeated);
	}
}

程序輸出。

AbcAbcAbc

StringUtils類

如果不是正則表達式,則可以使用 StringUtils 類及其方法repeat(times)。

import org.apache.commons.lang3.StringUtils;

public class Main 
{
	public static void main(String[] args) 
	{
		String str = "Abc";
	
		String repeated = StringUtils.repeat(str, 3);

		System.out.println(repeated);
	}
}

程序輸出。

AbcAbcAbc

以上就是Java中String.repeat()的作用是什么,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武鸣县| 新余市| 延津县| 台北县| 福鼎市| 项城市| 仪征市| 林西县| 武夷山市| 沈阳市| 维西| 黎川县| 瑞金市| 武威市| 全南县| 康乐县| 营口市| 宁都县| 兴海县| 霸州市| 汝南县| 延边| 黑河市| 陇川县| 方山县| 梅河口市| 广饶县| 攀枝花市| 宁强县| 武定县| 达尔| 永川市| 宜都市| 依安县| 吉隆县| 宁陵县| 深州市| 内乡县| 孟村| 仙桃市| 镇安县|