0
如何計算調用方法時作爲splat參數傳遞的值的數量?獲取splat ruby中變量的數量
def splat_demo(*var)
#code to find out no of values in the splat variable here
end
如何計算調用方法時作爲splat參數傳遞的值的數量?獲取splat ruby中變量的數量
def splat_demo(*var)
#code to find out no of values in the splat variable here
end
你得到一個數組所以只要運行var.size
得到獲得通過在。
不知道我可以使用它作爲一個數組值的數量。謝謝! – tekina
您不要「將其用作數組」。它*是一個'數組'。 –