//Address类
public class Address { private String city; private String street;}
//Car类
public class Car { private String brand; private double price; private double typeCircle;}
//person类
public class Person { private String name; private Car car; private String city; private String info;}
//xml配置文件