function alterObjects(constructor, greeting) {
    //所有实例的某个属性都改变只需要改变这个构造函数的原型即可
    constructor.prototype.greeting = greeting
}