我可以在Swift中模拟traits/mixins吗?

前端之家收集整理的这篇文章主要介绍了我可以在Swift中模拟traits/mixins吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Swift有一种混合的特性,一个斯卡拉? Swift关于使用扩展来为现有类添加协议的部分非常接近。但是,由于协议不能包含实现,因此不能用于将代码混合到类中。还有别的办法吗?
从Swift 2.0开始,是的!

Providing Default Implementations

You can use protocol extensions to provide a default implementation to any method or property requirement of that protocol. If a conforming type provides its own implementation of a required method or property,that implementation will be used instead of the one provided by the extension.

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

猜你在找的Swift相关文章