package mxdx;
//import java.util.Scanner;
public class TsetPerson {
public static void main(String[]args) {
Person one=new Person();
System.out.println("输入的年龄为"+one.getAge());
}
}
public class Person{
private int age;
public void setAge(int a) {
if(a>0&a<=130) {
age=a;
}
else throw new RuntimeException("输入数字有误");
}
public int getAge() {
return age;
}
//构造器练习 属性赋值
public Person() {
age=18;
}
}
不知道为什么会有错
慕移动4708697
奔跑的虫子
小草1434
你不是最丑的
慕无忌1273438
慕无忌1273438
qq_木偶_2
qq_木偶_2
慕的地6079101
你不是最丑的
相关分类