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如何实现泛型构造函数
462浏览 • 1回复 待解决
HarmonyOS 错误提示如下
113浏览 • 1回复 待解决
HarmonyOS 函数使用bind提示警告
285浏览 • 1回复 待解决
HarmonyOS 上传 app 文件, 提示 996 错误
18浏览 • 1回复 待解决