如果set和給定set至少有一個共同的元素,則intersect?()是Ruby中的內置方法,返回true。
用法:s1_name.intersect?(s2_name)
參數:該函數接受強製性參數集,以對其進行檢查。
返回值:如果集合和給定集合具有至少一個共同的元素,則返回true,否則返回false。
例子1:
# Ruby program to illustrate
# the intersect method
# requires the set
require "set"
s1 = Set[16, 8, 3, 5, 2]
s2 = Set[18, 17, 2]
# intersect method used
puts s1.intersect?(s2)
輸出:
true
例子2:
# Ruby program to illustrate
# the intersect method
# requires the set
require "set"
s1 = Set[16, 8]
s2 = Set[18, 17, 56]
# intersect method used
puts s1.intersect?(s2)
輸出:
false
相關用法
- Ruby Set add?用法及代碼示例
- Ruby Regexp eql?()用法及代碼示例
- Scala Regexp =~()用法及代碼示例
- Ruby Numeric i()用法及代碼示例
- Ruby Array one?()用法及代碼示例
- Ruby Regexp new()用法及代碼示例
- Scala Regexp ===()用法及代碼示例
- Scala Regexp ==()用法及代碼示例
- Ruby DateTime second()用法及代碼示例
- Scala Complex +用法及代碼示例
- Scala Complex -用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Set intersect?() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。