class Person{private _name:string = ''public get name() : string {return this._name}public set name(v : string) {this._name = v;}}const person = new Person()console.log(person.name )person.name = 'xiaoming'console.log(person.name)
class Person{private _name:string = ''public get name() : string {return this._name}public set name(v : string) {this._name = v;}}const person = new Person()console.log(person.name )person.name = 'xiaoming'console.log(person.name)
让时间为你证明