Type aliases such as Swift

Source: Internet
Author: User

A type alias is a selectable name defined for an existing type. You can define a type alias by keyword Typealias.

Aliases are useful when you want to refer to an existing type by a name that looks more appropriate in the context, such as when using data from an externally indicated size:

Typealias audiosample = UInt8

Once you have defined a type alias, you can use the type alias anywhere in place of the original type name:

var maxamplitudefound = audiosample.min//maxamplitudefound = 0

Here, Audiosample is defined as a UINT type alias, and calling Audiosample.min is actually calling Uint8.min, returning a number with a value of 0 to initialize the Maxamplitudefound variable.

Type aliases such as Swift

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.