import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner in = new Scanner(System.in); int age; age = in.nextInt(); Person p = new Person(age); age = in.nextInt(); try{ p.setAge(age); }catch(AgeException e){ } } } class Person{ int age; public Person(int age){ this.age = age; } public void setAge(int age) throws AgeException { if(this.age <=age){ this.age = age; }else{ throw new AgeException(); } } } class AgeException extends Exception{ }
时间: 2024-02-15 20:28:26 浏览: 60
java代码-import java.util.Scanner;
这段代码是一个简单的 Java 程序,它通过输入年龄,并将年龄传递给 Person 类的对象 p,然后通过调用 setAge() 方法将年龄存储在 Person 对象中。如果输入的年龄小于对象中存储的年龄,则该方法会抛出一个 AgeException 异常。在主方法中,该异常被捕获并忽略了。该程序的作用是演示如何使用异常处理来验证输入的数据。
阅读全文