Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 220 Bytes

enum.md

File metadata and controls

14 lines (11 loc) · 220 Bytes

枚举类型Enum

与其他语言使用,,或换行分割符不同,仓颉使用| 进行枚举项定义。

public enum TransferMode{
    | Tcp
    | Udp
    | File
    | Unix
    | UnixDatagram
}