String.equals()方法的实现代码
Posted peanut
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了String.equals()方法的实现代码相关的知识,希望对你有一定的参考价值。
public boolean equals(Object anObject) { if (this == anObject) { return true; } if (anObject instanceof String) { String anotherString = (String)anObject; int n = count; if (n == anotherString.count) { char v1[] = value; char v2[] = anotherString.value; int i = offset; int j = anotherString.offset; while (n-- != 0) { if (v1[i++] != v2[j++]) return false; } return true; } } return false; }
以上是关于String.equals()方法的实现代码的主要内容,如果未能解决你的问题,请参考以下文章
C#.Net代码精简优化(空操作符(??)asstring.IsNullOrEmpty() string.IsNullOrWhiteSpace()string.Equals()Syste