Topic: 菜鸟问题。求实现字符串比较的程序 |
Print this page |
1.菜鸟问题。求实现字符串比较的程序 | Copy to clipboard |
Posted by: wjzf355 Posted on: 2004-12-02 12:02 即实现Srting.equals的功能 |
2.Re:菜鸟问题。求实现字符串比较的程序 [Re: wjzf355] | Copy to clipboard |
Posted by: april518 Posted on: 2004-12-02 17:43 这个你不是已经回了吗?调用equals 方法就行了嘛!难道是我理解错了吗?麻烦楼主说明白一点点,这样也好让大家来解答你的问题嘛! |
3.Re:菜鸟问题。求实现字符串比较的程序 [Re: wjzf355] | Copy to clipboard |
Posted by: wjzf355 Posted on: 2004-12-02 21:37 我知道啊,我是要写出equals方法的具体实现方法,不是单纯调用equals。是个面试的题目 |
4.Re:菜鸟问题。求实现字符串比较的程序 [Re: wjzf355] | Copy to clipboard |
Posted by: yorksaddam Posted on: 2004-12-03 21:52 if (str1.length() != str2.length() ) return flase else { length=str1.length(); for(int i=0;i<legnth;i++) if(str1.getChar( i ) != str2.getChar( i ) ) return flase; return true; } |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |