C# 字符串比较方法
可能的重复:
string.Equals() 和 == 运算符真的相同吗? < /p>
string类提供了不同的比较方法
- ==
string.Equals
string.Compare
== 和 Equals
相对于 string 类有什么区别?
因为 Equals 方法是由 System.Object 提供的,它比较对象的引用
Possible Duplicate:
Are string.Equals() and == operator really same?
string class provides different methods for comparsion
- ==
string.Equals
string.Compare
what is the difference between == and Equals
with respect to the string class?
because Equals method is provide by the System.Object which compares the refernces of the objects
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 string ,虽然它是引用类型,但 == 和 Equals 都会进行值检查,这与其他引用类型不同。
In case of string , though it is a reference type , both == and Equals does a value checking unlike other reference types.
了解C# 字符串等于
Read about C# String Equals