当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala String ==用法及代码示例


==() 是 Ruby 中的 String 类方法,用于检查 str==obj 是否。

用法: str == obj

Parameters: 这里,str是给定的字符串,obj是要比较的对象。

Returns: True 或 False 基于两个字符串的相等性。

示例 1:


#ruby 2.3.1  
     
# Ruby program to demonstrate 
# the == method 
     
# Taking a string and 
# using the method 
puts "Ruby" == "Ruby"
puts "Hello" == "Hell"

输出:

true
false

示例 2:


#ruby 2.3.1  
     
# Ruby program to demonstrate 
# the == method 
     
# Taking a string and 
# using the method 
puts "ayucdef" == "ayucdefg"
puts "Ruby" == 77

输出:

false
false

相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String == method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。