b=[1,3,55,777,2,4,6,8,0]
对于数值型的数据,max会得到数组的最大值,min得到数组的最小值
b.max => 777
b.min => 0
而对于字符串型数组比较大小没有实际意义,
ruby中给出的例子是
# enum.max -> obj
# enum.max { |a, b| block } -> obj
#a = %w(albatross dog horse)
#a.max => "horse"
# a.max { |a, b| a.length <=> b.length } #=> "albatross"
实际中的实验
d=%w(albatross dog horse ddd dasgfds)
d.max => "horse"
有点怪,怎么回事
为此打印了一下比较直观的数字字符串
a = ["1", "3", "55", "777", "2", "4", "6", "8", "0"]
def max(first,*rest) max=first rest.each do |x| p "---#{x}---#{max}" max=x if x>max p "---#{x}---#{max}" max end
运行
a.max
结果为
"---3---1" "---3---3" "---55---3" "---55---55" "---777---55" "---777---777" "---2---777" "---2---777" "---4---777" "---4---777" "---6---777" "---6---777" "---8---777" "---8---8" "---0---8" "---0---8" => "8"
问题出来了,"8" > "777" => true
,再测试
"7" > "777" => false
"6" > "777" => false
"9" > "777" => true
"10" > "777" => false
"11" > "777" => false
"70" > "777" => false
"80" > "777" => true
该崩溃了,规律好不友好,因为用的max这个比较大小的方法,之前认为他是通过ASCII编码判断大小的,今天看有关sort排序的问题时发现这个问题,此处其实是通过字典排序的方法取的最大值。