注意map不能直接修改原值,应该使用枚举器的原意,返回值才是。
arr.map{|x| x*=10} #no use to arr
正确的是
arr_new = arr.map{|x| x*=10}
本文标题:代码错误
本文链接:https://www.haomeiwen.com/subject/wzlhoqtx.html
网友评论