Kotlin Enumeration Class _kotlin

Source: Internet
Author: User

The most basic use of an enumeration class is to implement type-safe enumerations

Enum class Direction {North
    , SOUTH, West, East
}
Kotlin

Each enumerated constant is an object. Enumeration constants are separated by commas. Class

Because each enumeration is an instance of an enumeration class, they can be initialized.

Enum Class Color (Val rgb:int) {
        RED (0xff0000),
        GREEN (0x00ff00),
        BLUE (0x0000ff)
}
Kotlin Anonymous Class

Enumeration constants can also declare their own anonymous classes

Enum class Protocolstate {
    waiting {
        override fun signal () = Talking
    },

    talking {override
        fun sig NAL () = Waiting
    };

    Abstract Fun Signal (): Protocolstate
}
Kotlin

And the corresponding methods, and methods to override the base class. Note that if the enumeration class defines any
Members, to separate the enumeration constants in the member definition by using semicolons, as

The same in Java.


Detailed Tutorial: https://www.yiibai.com/kotlin/enum-classes.html

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.