服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Swift - swift guard关键字详解及使用

swift guard关键字详解及使用

2021-01-05 14:58u012903898 Swift

这篇文章主要介绍了swift guard关键字详解及使用的相关资料,需要的朋友可以参考下

swift guard关键字详解及使用

Swift提供guard关键字,guard关键字可以简化繁琐的判断逻辑

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
func buy( money: Int , price: Int , capacity: Int , volume: Int){
 
  if money >= price{
    if capacity >= volume{
      print("I can buy it!")
      print("\(money-price) Yuan left.")
      print("\(capacity-volume) cubic meters left")
    }
    else{
      print("No enough capacity")
    }
  }
  else{
    print("Not enough money")
  }
}

以上代码用guard关键字简化代码风格

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
func buy2( money: Int , price: Int , capacity: Int , volume: Int){
 
  guard money >= price else{
    print("Not enough money")
    return
  }
 
  guard capacity >= volume else{
    print("Not enough capacity")
    return
  }
 
  print("\(money-price) Yuan left.")
  print("\(capacity-volume) cubic meters left")
}

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://blog.csdn.net/u012903898/article/details/52834391

延伸 · 阅读

精彩推荐