Ruby 结构体 eql?()函数

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程