java repeat是什么?讓我們一起來了解一下吧!
Javarepeat是通過使用簡單的Java程序,學(xué)習(xí)重復(fù)給定字符串N次,以創(chuàng)造含有所有重復(fù)的新字符串。使用方法sting.repeat(N)和使用常規(guī)方法該表達(dá)式可在java10中使用。
?
? ?
String.repeat():返回一個字符串,該字符串的值是給定字符串的重復(fù)?count?次的串聯(lián)。如果字符串為空或?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.*/
實戰(zhàn)演練,具體步驟如下:
str?=?"IncludeHelp" //"IncludeHelp" str.repeat(3) //"IncludeHelpIncludeHelpIncludeHelp" str.repeat(0) //"" str.repeat(str.length) //"IncludeHelpIncludeHelpIncludeHelpIncludeHelpIncludeHelpIncludeHelpIncludeHelpIncludeHelpIncludeHelpIncludeHelpIncludeHelp" str.repeat(-1) /* VM424:1?Uncaught?RangeError:?Invalid?count?value ????at?String.repeat?() ????at?:1:5 */
以上就是小編今天的分享了,希望可以幫助到大家。