中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
ArkTS中this使用场景
微信扫码分享
class A { count: string = 'a'; m(i: string): void { this.count = i; } } function main(): void { let a = new A(); console.log(a.count); // 打印a a.m('b'); console.log(a.count); // 打印b }
class Test1 { value: string = ''; constructor (value: string) { this.value = value; } foo() { console.log(this.value); } } let obj: Test1 = new Test1('abc'); obj.foo();