你怎么都写在main方法外面了?
从Person person = new Person();开始,都复制到main方法中就可以了;
例如:
public static void main(String[] args){ Person person = new Person(); ...}