C# 字符串比较方法

发布于 2024-11-03 20:36:52 字数 440 浏览 0 评论 0原文

可能的重复:
string.Equals() 和 == 运算符真的相同吗? < /p>

string类提供了不同的比较方法

  1. ==
  2. string.Equals
  3. string.Compare

== 和 Equals 相对于 string 类有什么区别?

因为 Equals 方法是由 System.Object 提供的,它比较对象的引用

Possible Duplicate:
Are string.Equals() and == operator really same?

string class provides different methods for comparsion

  1. ==
  2. string.Equals
  3. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野稚 2024-11-10 20:36:52

对于 string ,虽然它是引用类型,但 == 和 Equals 都会进行值检查,这与其他引用类型不同。

In case of string , though it is a reference type , both == and Equals does a value checking unlike other reference types.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文