Ruby 结构体 eql?()函数
eql?() 是Ruby中的一个内置方法,如果其他结构有相同的子类且成员值相等,则返回true。
语法 :struct1.eql?(struct2)
参数 :该函数不接受任何参数。
返回值 :如果两个给定的范围相等,则返回布尔值 “true”,否则返回 “false”。
示例 1 :
# Ruby program for eql? method in struct
# Include struct
Employee = Struct.new(:company_name, :position, :zip)
#initialise struct
struct1 = Employee.new("GEEK", "INTERN", 12345)
struct2 = Employee.new("GEEK", "INTERN", 12345)
# Prints the value of struct1.eql?(struct2)
puts struct1.eql?(struct2)
输出:
true
例2 :
# Ruby program for eql? method in struct
# Include struct
Employee = Struct.new(:company_name, :position)
#initialise struct
struct1 = Employee.new("GEEK", "INTERN")
struct2 = Employee.new("Data structure", "INTERN")
# Prints the value of struct1.eql?(struct2)
puts struct1.eql?(struct2)
输出:
false