码迷,mamicode.com
首页 > 其他好文 > 详细

关于方法的一些细节

时间:2016-08-01 10:39:04      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:

#使用*可接受多个参数
def test(a,*b)
    puts "#{a} and #{b.join(‘,‘)}"
end
test(1,2,3,4)            # 1 and 2,3,4

#每个被调用的方法都会返回一个值,是方法最后一条语句执行的结果
def test1
    "one"
    "two"
end
puts test1             # two

#如果return多个参数,将以数组的形式返回
def test2
    100.times do |num|
        square = num * num
        return num ,square if square > 1000
    end 
end
print test2,"\n"            # [32, 1024]

 

关于方法的一些细节

标签:

原文地址:http://www.cnblogs.com/stellar/p/5724626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!