swift – 可选绑定的命名约定

前端之家收集整理的这篇文章主要介绍了swift – 可选绑定的命名约定前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
最初阻止我在代码中加入过多可选绑定的一件事是添加了更多变量名称.例如,我通常会写:
if bananasInBarrel != nil{
  print("We have \(bananasInBarrel!) bananas in the barrel.")
}

因为替代方案似乎有点乱:

if let safeBananas = bananasInBarrel{
  print("We have \(safeBananas) bananas in the barrel.")
}

那是很多香蕉.我已经看到人们使用类似b的东西作为新的变量名称(在较大的代码块中可能难以阅读),但我想知道是否有一个普遍接受的变量名称样式标准可供使用可选绑定?谢谢阅读.

只需使用相同的名称
if let bananasInBarrel = bananasInBarrel {
  print("We have \(bananasInBarrel) bananas in the barrel.")
}

不要使用匈牙利语表示法 – 如果您使用的是未包装的可选项,编译器会抱怨.

原文链接:https://www.f2er.com/swift/319872.html

猜你在找的Swift相关文章