==是一個內置方法紅 gems 如果 other 具有相同的結構子類並且具有相同的成員值,則返回 true。
用法: struct1 == struct2
參數:該函數不接受任何參數。
返回值:如果兩個給定範圍相等,則返回布爾值 true,否則返回 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
相關用法
- Scala String lastIndexof()用法及代碼示例
- Scala String split()用法及代碼示例
- Scala String startsWith()用法及代碼示例
- Scala Stream head()用法及代碼示例
- Scala Stream takeRight()用法及代碼示例
- Scala String charAt()用法及代碼示例
- Scala String compareTo()用法及代碼示例
- Scala String compareToIgnoreCase()用法及代碼示例
- Scala String contentEquals()用法及代碼示例
- Scala String endsWith()用法及代碼示例
- Scala String equals()用法及代碼示例
- Scala String equalsIgnoreCase()用法及代碼示例
- Scala String getBytes()用法及代碼示例
- Scala String hashCode()用法及代碼示例
- Scala String indexOf()用法及代碼示例
- Scala String intern()用法及代碼示例
- Scala String lastIndexOf()用法及代碼示例
- Scala String matches()用法及代碼示例
- Scala String regionMatches()用法及代碼示例
- Scala String replace()用法及代碼示例
- Scala String replaceAll()用法及代碼示例
- Scala String replaceFirst()用法及代碼示例
- Scala String subSequence()用法及代碼示例
- Scala String substring()用法及代碼示例
- Scala String toCharArray()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Struct == function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。