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

ruby **option作为函数参数,map的key必须是符号

时间:2017-08-27 12:04:26      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:expected   参数   expect   bar   函数   expec   nbsp   arguments   error   

# NEW UNNAMED KEYWORD ARGUMENTS
def new_way(**options)
return options[:foo]
end
# => :new_way
new_way(foo: "bar")
# => "bar"
new_way
# => nil

 

 

这里传递给new_way方法的map中,他的key必须是符号 如果传递{“ab”=>"valu"} 会报 wrong number of arguments (given 1, expected 0) (ArgumentError)

ruby **option作为函数参数,map的key必须是符号

标签:expected   参数   expect   bar   函数   expec   nbsp   arguments   error   

原文地址:http://www.cnblogs.com/or2-/p/7439839.html

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