size()是Ruby中的內置方法,該方法返回struct中存在的成員總數。
用法: struct_name.size()
參數:該函數不接受任何參數。
返回值:返回指定struct成員的整數。
例子1:
# Ruby program for size method in struct
# Include struct
Places = Struct.new(:name, :speciality)
#initialize values
detail = Places.new("Nagpur", "oranges")
# size used
puts detail.size
輸出:
2
例子2:
# Ruby program for size method in struct
# Include struct
animals = Struct.new(:name, :speciality , :found_in)
# initialize values
detail = animals.new("labrador", "bark" , "Newfoundland")
# size used
puts detail.size
輸出:
3
相關用法
- Ruby Struct eql?()用法及代碼示例
- Ruby Struct each()用法及代碼示例
- Scala Struct ==用法及代碼示例
- Ruby Struct members()用法及代碼示例
- Ruby Struct inspect()用法及代碼示例
- Ruby Struct to_s()用法及代碼示例
- Ruby Struct filter()用法及代碼示例
- Ruby Struct to_a()用法及代碼示例
- Ruby Struct values_at()用法及代碼示例
- Ruby Struct length()用法及代碼示例
- Ruby Struct values()用法及代碼示例
- Ruby Set size()用法及代碼示例
- Ruby Queue size()用法及代碼示例
- Ruby Vector size()用法及代碼示例
- Ruby Range size()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Struct size() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。