Ruby 数组类eql?()操作

Ruby 数组类eql?()操作

Array#eql?() : eql?()是一个数组类的方法,用于检查两个数组是否相等。

语法。Array.eql?()

参数。要比较的数组

返回:真 – 如果数组相等;否则为假

代码#1:eql?()方法的例子

# Ruby code for eql?() method
  
# declaring array
a = [18, 22, 33, nil, 5, 6]
  
# declaring array
b = [1, 4, 1, 1, 88, 9]
  
# declaring array
c = [18, 22, nil, nil, 50, 6]
  
# eql?
puts "eql? : #{a.eql?(b)}\n\n"
  
# eql?
puts "eql? : #{b.eql?(c)}\n\n"
  
# eql?
puts "eql? : #{c.eql?(a)}\n\n"

输出:

eql? : false

eql? : false

eql? : false

代码#2:eql?()方法的例子

# Ruby code for eql?() method
  
# declaring array
a = ["abc", "nil", "dog"]
  
# declaring array
b = ["cow", nil, "dog"]
  
# declaring array
c = ["cat", nil, nil]
  
# eql?
puts "eql? : #{a.eql?(b)}\n\n"
  
# eql?
puts "eql? : #{b.eql?(b)}\n\n"
  
# eql?
puts "eql? : #{c.eql?(a)}\n\n"

输出:

eql? : false

eql? : true

eql? : false

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程