首页 > 代码库 > Array types are now written with the brackets around the element type问题的解决方法
Array types are now written with the brackets around the element type问题的解决方法
在xcode6.1中来编写swift空数组时。出现的的这个问题,依照官方
Swift 教程《The Swift Programming Language》来写
let emptyArray = String[]() 时会提示“Array types are now written with the brackets around the element type”错误,正确的写法应该是
let emptyArray = [String]() 其他类型类似来处理就可以
Array types are now written with the brackets around the element type问题的解决方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。