数组的空数组
Swift Xcode version 13.2.1
这里,我有字符串数组 var ActiveJobDic: [[String: Any]] = [] ,如何声明该数组为空!我只是清空了这个数组,如下所示,这不起作用!
if ActiveJobDic == []{
print("working")
}
Swift Xcode version 13.2.1
Here, I have array of string var ActiveJobDic: [[String: Any]] = [] ,how to declare that this array is empty! I have simply empty this array as following ,This does not work!
if ActiveJobDic == []{
print("working")
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题包含着答案。有
isEmpty
并且请以小写字母开头命名变量
Your question contains the answer. There is
isEmpty
And please name variables with starting lowercase letter