Avant-propos
Il y a de nombreuses constantes dans le projet, et nous utilisons tous des énumérations (enum) pour gérer Ci-dessous, je partagerai avec vous un code plus courant
énumération
/** * 描述: 常量类型 * / public enum ClientType { SYSTEM(0, "后台管理"), EDUCATION(1, "教育系统"), GOVERNMENT(2, "政府系统"); private Integer value; private String text; ClientType(Integer value, String text) { this.value = value; this.text = text; } public Integer getValue() { return this.value; } public String getText() { return this.text; } /** *根据值找相对应的中文 */ public static String getTextByValue(Integer value) { return Arrays.stream(values()) // java8新特性 -- stream流 .filter(x -> x.getValue().equals(value)) .map(ClientType::getText) .findFirst().orElse(""); } }
l'énumération est relativement simple à utiliser dans le code Java
dans Comment utiliser la couche application
// 获取类型相对应的数值 Integer type = ClientType .SYSTEM.getValue(); // 获取中文 Intger code = 1; // 初始化 for (ClientType value : ClientType.values()) { if (type.value== code) { return type; // 不同的业务有不同的处理方式 } }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!