字符串重复(String Repetition)

优质
小牛编辑
134浏览
2023-12-01

语法 (Syntax)

字符串的重复可以通过简单的'*'运算符完成。

String*number 

参数 (Parameters)

参数将是

  • 一个字符串作为*运算符的左操作数

  • 运算符右侧的数字,表示需要重复字符串的次数。

返回值 (Return Value)

返回值是一个字符串。

例子 (Example)

以下是Groovy中字符串用法的示例 -

class Example { 
   static void main(String[] args) { 
      String a = "Hello"; 
      println("Hello"*3); 
      println(a*3); 
   } 
}

当我们运行上述程序时,我们将得到以下结果 -

HelloHelloHello 
HelloHelloHello