$param = k.chomp.split("\t")
如何找到$param
的長度,因爲它是一個數組? 其實當我在寫如何查找數組類的長度?
puts $param.class
我喜歡陣列的O/P。 現在我該如何找到這個數組的長度?
我試過$param.length
但它不起作用。
$param = k.chomp.split("\t")
如何找到$param
的長度,因爲它是一個數組? 其實當我在寫如何查找數組類的長度?
puts $param.class
我喜歡陣列的O/P。 現在我該如何找到這個數組的長度?
我試過$param.length
但它不起作用。
Array價類
k = "This \t is \t just \t testing"
$param=k.chomp.split("\t")
array_length= $param.length #or $param.size
puts "length of $param is : #{array_length}"
O/P
length of $param is : 4
你確定你做了'$ param.length'不是'$ param.lenght'?你收到什麼錯誤信息? – 2010-07-06 07:09:43