Preface: Enumeration types are defined using enum: enum Day { SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY } The enumeration type Day defined above has 7 values. enum Day { SUNDAY = 0, MONDAY = 1, TUESDAY = 2, WEDNESDAY = 3, THURSDAY = 4, FRIDAY = 5, SATURDAY = 6 } Here is what the above code looks like after being translated into JavaScript: var Day = void 0; (function (Day) { Day[Day["SUNDAY"] = 0] = "SUNDAY"; Day[Day["MONDAY"] = 1] = "MONDAY"; Day[Day["TUESDAY"] = 2] = "TUESDAY"; Day[Day["WEDNESDAY"] = 3] = "WEDNESDAY"; Day[Day["THURSDAY"] = 4] = "THURSDAY"; Day[Day["FRIDAY"] = 5] = "FRIDAY"; Day[Day["SATURDAY"] = 6] = "SATURDAY"; })(Day || (Day = {})); As you can see, each value is assigned a corresponding number. In TypeScript, we need to use the dot form to get the members of the enumeration set: console.log(Day.SUNDAY) // 0 console.log(Day.MONDAY) // 1 After talking about the basic use of enumeration types, let's take a look at the common enumeration types. 1. Digital EnumerationIn the above example, when only the constant name is specified, a set of numbers that starts at 0 and increases by default is defined, which is called a digital enumeration. If you want to start incrementing from another value, you can specify the index of the first value: enum Color { Red = 2, Blue, Yellow } console.log(Color.Red, Color.Blue, Color.Yellow); // 2 3 4 You can specify an index value for a field, and the index values that are not specified will be incremented by one: //Specify some fields, and use the default incremental index for others enum Status { Ok = 200, Created, Accepted, BadRequest = 400, Unauthorized } console.log(Status.Created, Status.Accepted, Status.Unauthorized); // 201 202 401 In addition, you can specify discontinuous arbitrary index values for each field: enum Status { Success = 200, NotFound = 404, Error = 500 } console.log(Status.Success, Status.NotFound, Status.Error); // 200 404 500 Numeric enumerations can use computed values and constants when defining values. However, please note that if a field uses a calculated value or constant, the field immediately following the field must be set with an initial value. The default increment value cannot be used here. Let's take a look at an example: // The initial value is the calculated value const getValue = () => { return 0; }; enum ErrorIndex { a = getValue(), b, // error enumeration members must have initialized values c } enum RightIndex { a = getValue(), b = 1, c } // The initial value is a constant const Start = 1; enum Index { a = Start, b, // error enumeration members must have initialized values c } 2. String Enumeration // Using string literal enum Message { Error = "Sorry, error", Success = "Hoho, success" } console.log(Message.Error); // 'Sorry, error' // Use other enumeration members in the enumeration value enum Message { Error = "error message", ServerError = Error, ClientError = Error } console.log(Message.Error); // 'error message' console.log(Message.ServerError); // 'error message'
3. Reverse mapping When defining an enumeration type value, you can get the corresponding Let’s look at the following example: enum Status { Success = 200, NotFound = 404, Error = 500 } console.log(Status["Success"]); // 200 console.log(Status[200]); // 'Success' console.log(Status[Status["Success"]]); // 'Success' The enumeration defined in Let's take a look at the effect of { 200: "Success", 404: "NotFound", 500: "Error", Error: 500, NotFound: 404, Success: 200 } As you can see, 4. Heterogeneous EnumerationHeterogeneous enumerations are enumerations whose member values have both numeric and string types, as follows: enum Result { Failed = 0, Success = "Success" } Using asynchronous enumerations is not recommended during development. Because when a class of values is organized into an enumeration value, their characteristics are often similar. For example, when making an interface request, the return status code is a numeric value, and if it is a prompt message, it is a string. Therefore, when using enumerations, it is often possible to avoid using heterogeneous enumerations, mainly by organizing the types. 5. Constant Enumeration In enum Status { Off, On } const enum Animal { Dog, Cat } const status = Status.On; const animal = Animal.Dog; The above code is compiled into JavaScript like this: var Status; (function(Status) { Status[(Status["Off"] = 0)] = "Off"; Status[(Status["On"] = 1)] = "On"; })(Status || (Status = {})); var status = Status.On; var animal = 0; // Dog For the processing of By defining an enumeration of constants, you can maintain a collection of related constants in a clear, structured form. Furthermore, because the definitions and inline member values are erased after translation, the code size and performance are no worse than directly inlining constant values. 6. Enumeration member types and union enumeration typesIf all members in an enumeration value are values of literal types, then each member of the enumeration and the enumeration value itself can be used as a type. We call such enumeration members literal enumeration members. There are three types of enumeration member values that meet the conditions:
(1) Enumeration member typeWhen all enumeration cases have literal enumeration values, the enumeration cases become types: enum Animal { Dog = 1, Cat = 2 } interface Dog { type: Animal.Dog; } interface Cat { type: Animal.Cat; } let cat: Cat = { type: Animal.Dog // error [ts] Type 'Animal.Dog' is not assignable to type 'Animal.Cat' }; let dog: Dog = { type: Animal.Dog }; As you can see, the seventh line of the code uses (2) Joint enumeration typeWhen an enumeration value meets the conditions, it can be regarded as a union type containing all members: enum Status { Off, On } interface Light { status: Status; } enum Animal { Dog = 1, Cat = 2 } const light1: Light = { status: Animal.Dog // error Type 'Animal.Dog' is not assignable to type 'Status' }; const light2: Light = { status: Status.Off }; const light3: Light = { status: Status.On }; The above example defines the type of 7. Enumeration MergeAfter talking about common enumeration types, let's take a look at the concept of enumeration merging. For the values of the enumeration type, we can declare them separately: enum Day { SUNDAY, MONDAY, TUESDAY } enum Day { WEDNESDAY, THURSDAY, FRIDAY, SATURDAY } At this time, var Day = void 0; (function (Day) { Day[Day["SUNDAY"] = 0] = "SUNDAY"; Day[Day["MONDAY"] = 1] = "MONDAY"; Day[Day["TUESDAY"] = 2] = "TUESDAY"; Day[Day["WEDNESDAY"] = 3] = "WEDNESDAY"; Day[Day["THURSDAY"] = 4] = "THURSDAY"; Day[Day["FRIDAY"] = 5] = "FRIDAY"; Day[Day["SATURDAY"] = 6] = "SATURDAY"; })(Day || (Day = {})); This is the end of this article about TypeScript enumeration types. For more information about You may also be interested in:
|
<<: Solution to the problem of English letters not wrapping in Firefox
>>: Implementation of 2D and 3D transformation in CSS3
Innodb includes the following components 1. innod...
Table of contents Written in front Solution 1: Us...
Table of contents Parent component communicates w...
1. Delete node Execute kubectl delete node node01...
Table of contents 1. Introduction 1. What is an i...
1. Navigation: Unordered List vs. Other Label Ele...
Ubuntu is a relatively popular Linux desktop syst...
1. Docker cross-host communication Docker cross-h...
If this is the first time you install MySQL on yo...
Table of contents 1. HttpGET 2. HTTP POST WebSock...
1. Stop the MySQL service in the command line: ne...
Function: Jump to the previous page or the next p...
This article example shares the specific code of ...
Preface Docker has been very popular in the past ...
1. Introduction This article mainly explains how ...