swift0002

前端之家收集整理的这篇文章主要介绍了swift0002前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

subscript

提供一种类似于数组或者字典通过下标来访问对象的方式

如:

提供一种类似于数组或者字典通过下标来访问对象的方式

  1. struct Test{
  2. vara:Int=123
  3. subscript(index:Int)->Any?{
  4. switch(index){
  5. case0:returna
  6. default:returnnil
  7. //default:assert("Indexoutofrange")
  8. }
  9. }
  10. }
原文链接:https://www.f2er.com/swift/323061.html

猜你在找的Swift相关文章