红宝石 |结构 ==函数
==是 Ruby 中的一个内置方法,如果 other 具有相同的结构子类并且具有相同的成员值,则返回 true。
Syntax: struct1 == struct2
Parameters: The function accepts no parameter.
Return Value: It returns boolean value true if both the given ranges are equal, else it returns false.
示例 1 :
# Ruby program for == 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==struct2
puts struct1 == struct2
输出:
true
示例 2 :
# Ruby program for == method in struct
# Include struct
Employee = Struct.new(:company_name, :position, :zip)
#initialise struct
struct1 = Employee.new("GEEK", "INTERN", 12345)
struct2 = Employee.new("geeksforgeeks", "INTERN", 12345)
# Prints the value of struct1==struct2
puts struct1 == struct2
输出:
false