Ruby多态函数的常用实现方法

Ruby不支持类似C++的多态。

可以使用他的反射方法实现。

例如

def some_fn option

    case option

    when Array

    when String

    when Hash

    end

end

注意不要画蛇添足。使用option.class。反而不对!虽然满足==,但是不满足===!

你可能感兴趣的:(Ruby多态函数的常用实现方法)