Processing, 类String
中的equals()
用法介绍。
用法
str.equals(str)
参数
str
字符串:任何有效的字符串
返回
Boolean
说明
比较两个字符串以查看它们是否相同。此方法是必要的,因为无法使用相等运算符 (==) 比较字符串。如果字符串相同则返回true
,否则返回false
。
例子
String str1 = "CCCP";
String str2 = "CCCP";
// Tests to see if 'str1' is equal to 'str2'
if (str1.equals(str2) == true) {
println("Equal"); // They are equal, so this line will print
} else {
println("Not equal"); // This line will not print
}
相关用法
- Processing String.toUpperCase()用法及代码示例
- Processing String.toLowerCase()用法及代码示例
- Processing String.substring()用法及代码示例
- Processing String.length()用法及代码示例
- Processing String.charAt()用法及代码示例
- Processing String.indexOf()用法及代码示例
- Processing String用法及代码示例
- Processing StringList用法及代码示例
- Processing StringList.remove()用法及代码示例
- Processing StringDict用法及代码示例
- Processing StringDict.keys()用法及代码示例
- Processing StringDict.size()用法及代码示例
- Processing StringDict.hasKey()用法及代码示例
- Processing StringDict.sortValuesReverse()用法及代码示例
- Processing StringList.clear()用法及代码示例
- Processing StringList.set()用法及代码示例
- Processing StringList.get()用法及代码示例
- Processing StringList.upper()用法及代码示例
- Processing StringList.sortReverse()用法及代码示例
- Processing StringDict.clear()用法及代码示例
- Processing StringList.size()用法及代码示例
- Processing StringDict.values()用法及代码示例
- Processing StringDict.sortKeys()用法及代码示例
- Processing StringDict.remove()用法及代码示例
- Processing StringDict.keyArray()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 String.equals()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。