HarmonyOS 已经在构造函数中创建了变量,还是提示错误

HarmonyOS 已经在构造函数中创建了变量,还是提示错误-鸿蒙开发者社区


HarmonyOS
2024-11-27 09:51:42
浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
zxjiu

参考代码:

cat1?:Cat 
constructor() { 
  super(); 
  this.cat1 = new Cat() 
} 
//或者: 
cat1:Cat = new Cat() 
constructor() { 
  super(); 
  //this.cat1 = new Cat() 
} 
//或者: 
cat1!:Cat 
constructor() { 
  super(); 
  this.cat1 = new Cat() 
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
分享
微博
QQ
微信
回复
2024-11-27 14:38:53
相关问题
HarmonyOS ArkTS如何实现泛型构造函数
1301浏览 • 1回复 待解决
HarmonyOS 错误提示如下
693浏览 • 1回复 待解决
HarmonyOS 泛型构造方法ets的实现
715浏览 • 1回复 待解决
HarmonyOS 旧版API提示错误
556浏览 • 1回复 待解决
HarmonyOS 上架提示错误
805浏览 • 1回复 待解决
HarmonyOS 重载函数类型的变量报错
313浏览 • 1回复 待解决
HarmonyOS 函数使用bind提示警告
947浏览 • 1回复 待解决