Topic: 关于return的疑惑 |
Print this page |
1.关于return的疑惑 | Copy to clipboard |
Posted by: brolinuk Posted on: 2006-02-07 02:18 public boolean load(Map data){ if (data.containsKey("dbAccount.account.revenue")){ if (data.get("dbAccount.account.revenue")==null){ return false; } } if (data.containsKey("dbCustomer.customer.customer")){ String name = (String) data.get("dbCustomer.customer.customer"); //some other code return true; } return true; } 上面的方法中在最后使用了 return true, 是不是说明无论前面return 的是什么,, 最后这个方法返还都只会是true啊? 还是在前面遇到return 就会返还并且立即跳出这个方法啊.. |
2.Re:关于return的疑惑 [Re: brolinuk] | Copy to clipboard |
Posted by: ranchgirl Posted on: 2006-02-07 02:45 在前面遇到return 就会返还并且立即跳出这个方法! |
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 |