84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
业精于勤,荒于嬉;行成于思,毁于随。
用枚举??如果业务简单,推荐用map自己构造索引,如果业务复杂可以使用neo4j之类的图数据库
Java 的枚举不可不仅仅只有这么简单的功能哦,拓展性还是挺强的。根据你的要求,写个例子给你看看:
enum Country { CN ("北京", "上海", "广州", "深圳"), US ("华盛顿", "洛杉矶") ; public final String[] cities; public Country(String... cities) { this.cities = cities; } }
c语言的话,比如用16位的unsigned int表示0xabcd,前两位表示国家,后两位是城市,做位运算0x0100 ~ 0x01ff 中国0x0200 ~ 0x02ff 美国
用枚举??如果业务简单,推荐用map自己构造索引,如果业务复杂可以使用neo4j之类的图数据库
Java 的枚举不可不仅仅只有这么简单的功能哦,拓展性还是挺强的。根据你的要求,写个例子给你看看:
c语言的话,比如用16位的unsigned int表示
0xabcd,前两位表示国家,后两位是城市,做位运算
0x0100 ~ 0x01ff 中国
0x0200 ~ 0x02ff 美国