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() 
}
分享
微博
QQ
微信
回复
2024-11-27 14:38:53
相关问题
HarmonyOS ArkTS如何实现泛型构造函数
775浏览 • 1回复 待解决
HarmonyOS 泛型构造方法ets的实现
277浏览 • 1回复 待解决
HarmonyOS 错误提示如下
246浏览 • 1回复 待解决
HarmonyOS 旧版API提示错误
91浏览 • 1回复 待解决
HarmonyOS 重载函数类型的变量报错
39浏览 • 1回复 待解决
HarmonyOS 上架提示错误
310浏览 • 1回复 待解决
HarmonyOS 函数使用bind提示警告
466浏览 • 1回复 待解决