创建构造函数与实例化对象
首先抽象一个数据行为模板(class),后面所有分析都基于此类。
// 创建构造函数 => Person
function Person(name,age){
this.name = name;
this.age = age;
this.eat =