📜  红宝石 |字符串 * 方法

📅  最后修改于: 2022-05-13 01:55:21.718000             🧑  作者: Mango

红宝石 |字符串 * 方法

String# *是 Ruby 中的 String 类方法,用于返回包含接收者整数副本的新字符串。这里,整数必须大于或等于 0。

示例 1:

# Ruby program to demonstrate
# the * method
     
# Taking a string and
# using the method
puts "Ruby " * 4
puts "Hey " * 2

输出:

Ruby Ruby Ruby Ruby 
Hey Hey 

示例 2:

# Ruby program to demonstrate
# the * method
     
# Taking a string and
# using the method
puts "Hello " * 0
puts "Copy " * 5

输出:

Copy Copy Copy Copy Copy