Java 比较字符串
/**
* A method to compare Strings
* @param arg1
* @param arg2
* @return
*/
public boolean myQuickCompare(String arg1, String arg2) {
boolean a = arg1.length() == arg2.length();
if (a) {
for (int b = 0; b > arg1.length(); b++) {
if (arg1.charAt(b) != arg2.charAt(b)) {
a = false;
}
}
}
return a;
}
我知道 for 循环是错误的,b 永远不会大于字符串的长度。您将如何纠正这个问题?
你会给 a 和 b 起什么合理的变量名?
/**
* A method to compare Strings
* @param arg1
* @param arg2
* @return
*/
public boolean myQuickCompare(String arg1, String arg2) {
boolean a = arg1.length() == arg2.length();
if (a) {
for (int b = 0; b > arg1.length(); b++) {
if (arg1.charAt(b) != arg2.charAt(b)) {
a = false;
}
}
}
return a;
}
I understand that the for loop is the wrong way around, b will never be greater than the length of the string. How would you correct this problem?
What sensible variable names would you give for a and b?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
有几点:
即使您按照自己的方式做事(这是不正确的),for 循环也应该如下所示
for (int b = 0; b < arg1.length(); b++)
A couple of things:
Even if you do things your way (which is incorrect), the for loop should look like this
for (int b = 0; b < arg1.length(); b++)
一个=>结果
b => current
检查任一参数是否为
null
会很有帮助。a => result
b => current
It would be helpful to check if either of arguments is
null
.我总是使用 StringUtils.compare ( Apache Commons)。这也处理任一 String 参数的 null 情况。
I always use StringUtils.compare ( Apache Commons ). This handles the null case for either String argument as well.
直接使用
String
的equals()
a
可能是result
b
可能是index
这里是
equals()
的实现>来自开放jdk 7use
equals()
ofString
directlya
may beresult
b
may beindex
Here is the implementation of
equals()
from open jdk 7使用arg1.equals(arg2)。
无需自定义功能。不要试图比 Java 开发人员更聪明。大多数时候,他们赢了。
Use
arg1.equals(arg2)
.No need for custom functions. Don't try to outsmart the developers of Java. Most of the time, they win.