http://wo13145219.iteye.com/blog/2022667 http://json2csharp.chahuo.com/ using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using …
1.一个类的实例是有限且固定的,这个类称为枚举类.比如季节类,只有四个对象(春.夏.秋.冬) 2.手动实现一个枚举类(1)通过private将构造器隐藏起来(2)把这个类的所有可能实例都使用private static final修饰的类变量来保存.(3)如果有必要,可以提供一些静态方法. package cn.it.lsl; public class Season { private final String name; private final String desc; private S…