题意:输入一个文本,找出所有不同的单词,按字典序从小到大输出。单词不区分大小写。 样例输入: Adventures in DisneylandTwo blondes were going to Disneyland when they came to a fork in theroad. The s ...
分类:
其他好文 时间:
2019-02-06 13:10:15
阅读次数:
213
类的设计第一种类:商品的类,父类是个抽象类;
第二种类:折扣的类,父类也是个抽象类
类图如下;
使用技能
用继承抽象类实现多态,用多态来实现工厂模式;
使用反射机制来实现构造实例的多态和工厂模式;
工厂模式可以增加系统的可扩展性;
使用Dictionary中的list集合来减少代码量;
源代码仓库类using System;
using System.Collections.Generic...