Use of association types in the Ios-swift protocol

Source: Internet
Author: User

Associated Type: Association type

Sometimes it comes to the requirement that classes that inherit from a protocol need to ensure that the type of arguments handled by the proxy method is consistent, which requires the use of Association types to do so

Agreement statement:

Protocol Atypedelegate {

Associatedtype T

Func printcontent (ct:t)

Func Colum (ct:t)

}

Protocol use:

Class Atypeclass:atypedelegate {

Typealias T = Int

Func printcontent (ct:int) {

Print ("Int", #function)

}

Func Colum (ct:int) {

Print ("Int", #function)

}

}

Atypeclass inherits from Atypedelegate, the concrete type of T must be defined in the Atypeclass class in order to use

Use of association types in the Ios-swift protocol

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.