Noop Swift的详尽的开关语句

前端之家收集整理的这篇文章主要介绍了Noop Swift的详尽的开关语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Swift需要详尽的switch语句,每种情况都有可执行代码。有没有人解决了一个好的办法来处理你不想实际做任何事情的情况?我可以把println()放在那里,但感觉很脏。
根据 the book,你需要使用break there:

The scope of each case can’t be empty. As a result,you must include at least one statement following the colon (:) of each case label. Use a single break statement if you don’t intend to execute any code in the body of a matched case.

原文链接:/swift/321299.html

猜你在找的Swift相关文章