public static void main(String[] args) throws Exception {
Person_test pt1 = new Person_test(); //通过无参数的构造器 new 对象
Person_test pt2 = new Person_test("lisi",20); //通过有参数的构造器 new 对象
//一下是通过反射得到有参构造器 new 对象
Constructor con = Person_test.class.getConstructor(String.class, int.class);
Person_test he = (Person_test) con.newInstance("萧炎",20);