import java.util.Scanner; public class Main { public static void main(String[] args) { Person p = new Person(); Scanner scanner = new Scanner(System.in); while (scanner.hasNextInt()) { int age = scanner.nextInt(); p.setAge(age); System.out.println(p.getAge()); } } } class Person { private int age; public int getAge(){ return age; } public void setAge(int age){ if(age > 200){ this.age = 200; }else if(age >= 0 && age <= 200){ this.age = age; }else if(age < 0){ this.age = 0; } } //write your code here...... }
时间: 2024-02-14 13:32:00 浏览: 80
你的代码是一个简单的Java程序,其中包含一个Main类和一个Person类。Main类中的main方法创建了一个Person对象和一个Scanner对象,然后进入一个循环,等待用户输入整数。每次输入一个整数后,调用Person对象的setAge方法来设置年龄,并通过调用getAge方法来获取并输出年龄。
你的问题是什么?我可以帮助你解决代码中的问题或提供其他方面的建议。
相关问题
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{ }
这段代码是一个简单的 Java 程序,它通过输入年龄,并将年龄传递给 Person 类的对象 p,然后通过调用 setAge() 方法将年龄存储在 Person 对象中。如果输入的年龄小于对象中存储的年龄,则该方法会抛出一个 AgeException 异常。在主方法中,该异常被捕获并忽略了。该程序的作用是演示如何使用异常处理来验证输入的数据。
import java.util.Scanner; public class Main { public static void main(String[] args) { Person p = new Person(); Scanner scanner = new Scanner(System.in); while (scanner.hasNextInt()) { int age = scanner.nextInt(); p.setAge(age); System.out.println(p.getAge()); } } } class Person { private int age; public int getAge(){ return age; } public void setAge(int age){ if(age > 200){ this.age = 200; }else if(age >= 0 && age <= 200){ this.age = age; }else if(age < 0){ this.age = 0; } } //write your code here...... }解释
这段代码是一个简单的Java程序,包含了一个Person类和一个Main类。在Main类的main方法中,创建了一个Person对象p和一个Scanner对象scanner,用来读取用户输入的整数。然后通过循环,每次读取一个整数作为年龄并调用Person类的setAge方法将其设置为Person对象的年龄属性,并通过调用Person类的getAge方法打印出来。
Person类中有一个私有的age属性和对应的getAge和setAge方法。setAge方法根据传入的年龄值进行判断,如果大于200,则将年龄设置为200;如果在0到200之间,则设置为传入的年龄值;如果小于0,则将年龄设置为0。
在注释中,写有"write your code here......",暗示着在这个位置可以添加自己的代码。根据需要可以在这个位置添加其他方法或属性来扩展Person类的功能。
阅读全文