本帖最后由 廉伟杰 于 2014-2-7 19:50 编辑
- public class ThrowExceptionDemo {
- public static void reg(String name) {
- //表示已经注册过的名字
- String[] names = {"Will","Lucy","Jim","SpringBrother"};
-
- for (String n : names) {
- if(n.equals(name)){
-
- throw new RuntimeException(name + "被使用了");
-
- }else{
- System.out.println(name +"可以使用");
- break;
- }
- }
-
- }
-
- public static void main(String[] args) {
- try {
- reg("Lucy");
- } catch (Exception e) {
- String msg = e.getMessage();
- System.out.println(msg);
- }
- }
- }
复制代码
当时Will是答案是被使用,但是当是Lucy是不知道为啥显示可以被使用 |
|