- 正常的乘法功能 3*4==12 #=>true
- 数组*integer [1,23,[24,5]]*2 #=> [1,23,[24,5],1,23,[24,5]]
- 创建数组 *a = 1,2,”sdf” 相当于 a= [1,2,”sdf”]
- 字符串*integer “hello”*2 #=>”hellohello”
- a = [1,2] def method(*a) == def method(1,2) !=def method([1,2])
ruby中* 的部分功能
最新推荐文章于 2024-06-06 15:46:39 发布