Swift Learning 5---Protocol (Protocol) and extensions (extension)

Source: Internet
Author: User

1. Agreement

  Swift uses protocol to define the protocol:

protocol Exampleprotocol {    get  }    mutating func adjust ()}

Types, enumerations, and structs can all implement protocols:

classSimpleclass:exampleprotocol {var simpledescription:string="A very simple class."var anotherproperty:int=69105func Adjust () {simpledescription+="Now 100% adjusted."}}var a=Simpleclass () a.adjust ( ) Let Adescription=a.simpledescriptionstructSimplestructure:exampleprotocol {var simpledescription:string="A Simple Structure"mutating func adjust () {simpledescription+="(adjusted)"}}var b=simplestructure () b.adjust ( ) Let bdescription= B.simpledescription

2. Expansion

  Extensions are used to add new functionality to existing types (such as new methods or properties), and Swift uses extension to declare extensions:

extension Int:exampleprotocol {    var simpledescription:string {        return"the Number \ (self)"    }    mutating func adjust () {        $}    } 7. simpledescription

Swift Learning 5---Protocol (Protocol) and extensions (extension)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.