Substitute Algorithm

2008-02-23 10:10:48来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

String foundPerson(String[] people){
for(int i=0;i<people.length;i ){
if(people[i].equals("Don")){
return "Don";
}
if(people[i].equals("John")){
return "John";
}
if(people[i].equals("Kent")){
return "Kent";
}
}
return "";
}
Refactor:
String foundPerson(String[] people){
List candidates=Arrays.asList(new String[]{"Don","John","Kent"});
for(int i=0;i<people.length;i )
if(candidates.contains(people[i]))
return people[i];
return "";
}

上一篇: 在jboss,webshpere,weblogic下扩展发布新的MBean!
下一篇: hibernate配置笔记

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:自行开发了个可重用的数据库连接框架

下一篇:Struts的体系结构