随笔分类 - programming
all programming technology
摘要:接口(interface)接口泛指实体把自己提供给外界的一种抽象化物(可以为另一实体),用以由内部操作分离出外部沟通方法,使其能被修改内部而不影响外界其他实体与其交互的方式。接口实际上是一个约定:如:IClonable, IComparable;接口是抽象成员的集合:ICloneable含有方法cl...
阅读全文
摘要:枚举型实质就是使用符号来表示的一组相互关联的数据.Season currentSeason,nextSeason;currentSeason = Season.Spring;nextSeason = currentSeason + 1;Console.WriteLine("当前季节为:{0},{1}...
阅读全文