面向对象系统分析和设计综合实验报告Word文件下载.docx
- 文档编号:18825048
- 上传时间:2023-01-01
- 格式:DOCX
- 页数:22
- 大小:319.85KB
面向对象系统分析和设计综合实验报告Word文件下载.docx
《面向对象系统分析和设计综合实验报告Word文件下载.docx》由会员分享,可在线阅读,更多相关《面向对象系统分析和设计综合实验报告Word文件下载.docx(22页珍藏版)》请在冰豆网上搜索。
2)重构过程中所使用的面向对象设计原则及简要说明:
开闭原则:
创建新图形只要新加入图形工厂和对应图形类,不修改源代码。
依赖倒转原则:
针对接口编程。
单一职责原则:
每个工厂只生产对应图形。
2.某销售管理系统支持多种支付方式,如现金支付、行用卡支付和代金券支付等,我们可能会像下面这么写,考虑用简单工厂模式对其进行重构。
1)类图
2)实现代码:
publicclassClient{
publicstaticvoidmain(String[]args){
IpayFactoryiFactory=newIpayFactory();
Ipaymethonpaymethon=iFactory.createPaymethon("
cash"
);
if(paymethon!
=null){
paymethon.pay();
}else{
System.out.println("
error"
}
}
}
publicclassIpayFactory{
publicIpaymethoncreatePaymethon(Stringpaymethon)
{
if(paymethon.equalsIgnoreCase("
)){
returnnewCash();
elseif(paymethon.equalsIgnoreCase("
creditcard"
returnnewCreditCard();
voucher"
returnnewVoucher();
else{
returnnull;
publicinterfaceIpaymethon{
publicvoidpay();
publicclassCashimplementsIpaymethon{
publicvoidpay(){
System.out.println("
Cashpay"
publicclassCreditCardimplementsIpaymethon{
CreditCardpay"
publicclassVoucherimplementsIpaymethon{
Voucherpay"
3)实现结果:
3.使用简单工厂模式设计一个可以创建不同几何形状(Shape),如圆形(Circle)、矩形(Rectangle)和三角形(Triangle)等的绘图工具类,每个几何图形均具有绘制Draw()和擦除Erase()两个方法,要求在绘制不支持的几何图形时,抛出一个UnsupportedShapeException异常,绘制类图并编程模拟实现。
1)
类图
publicinterfaceShape{
publicvoiddraw();
publicvoiderase();
publicclassCircleimplementsShape{
publicvoiddraw(){
draw
Circle"
publicvoiderase(){
erase
publicclassRectangleimplementsShape{
Rectangle"
publicclassTriangleimplementsShape{
Triangle"
publicclassShapeFactory{
publicstaticShapeproduceShape(Stringshape)throwsUnsupportedShapeException{
if(shape.equals("
returnnewCircle();
elseif(shape.equals("
returnnewTriangle();
returnnewRectangle();
else{
thrownewUnsupportedShapeException();
publicclassUnsupportedShapeExceptionextendsException{
publicUnsupportedShapeException()
System.out.println("
绘制图形异常,请确认输入图形。
"
publicclassClient{
ShapeFactoryshapeFactory=newShapeFactory();
try{
shapeFactory.produceShape("
).draw();
).erase();
}catch(UnsupportedShapeExceptione){
e.printStackTrace();
4.现需要设计一个程序来读取多种不同类型的图片格式,针对每一种图片格式都设计一个图片读取器(ImageReader),如GIF图片读取器(GifReader)用于读取GIF格式的图片、JPG图片读取器(JpgReader)用于读取JPG格式的图片。
图片读取器对象通过图片读取器工厂ImageReaderFactory来创建,ImageReaderFactory是一个抽象类,用于定义创建图片读取器的工厂方法,其子类GifReaderFactory和JpgReaderFactory用于创建具体的图片读取器对象。
试使用工厂方法模式设计该程序,绘制类图并编程模拟实现。
需充分考虑系统的灵活性和可扩展性。
JpgReaderFactoryjFactory=newJpgReaderFactory();
jFactory.produceImageReader().readimage();
GifReaderFactorygFactory=newGifReaderFactory();
gFactory.produceImageReader().readimage();
publicinterfaceImageReader{
publicvoidreadimage();
publicclassGifReaderimplementsImageReader{
publicvoidreadimage(){
Readgifimage."
publicclassJpgReaderimplementsImageReader{
jpgreader"
Readjpgimage."
publicabstractclassImageReaderFactory{
publicabstractImageReaderproduceImageReader();
publicclassGifReaderFactoryextendsImageReaderFactory{
publicImageReaderproduceImageReader(){
gifreader"
returnnewGifReader();
publicclassJpgReaderFactoryextendsImageReaderFactory{
returnnewJpgReader();
5.有一个OEM制造商代理做HP笔记本电脑(Laptop),后来该制造商得到了更多的品牌笔记本电脑的订单Acer,Lenovo,Dell,该OEM商发现,如果一次同时做很多个牌子的本本,有些不利于管理。
利用工厂模式改善设计,绘制类图并编程模拟实现。
publicstaticvoidmain(String[]args){
IFactorylf=newHpFactory();
Laptoptp=lf.createLaptop();
tp.show();
lf=newAcerFactory();
tp=lf.createLaptop();
lf=newLenovoFactory();
lf=newDellFactory();
publicinterfaceIFactory{
publicLaptopcreateLaptop();
publicclassAcerFactoryimplementsIFactory{
publicLaptopcreateLaptop(){
returnnewAcerLaptop();
publicclassDellFactoryimplementsIFactory{
returnnewDellLaptop();
publicclassHpFactoryimplementsIFactory{
returnnewHpLaptop();
publicclassLenovoFactoryimplementsIFactory{
returnnewLenovoLaptop();
publicabstractclassLaptop{
publicvoidshow(){};
publicclassAcerLaptopextendsLaptop{
publicvoidshow(){
AcerLaptop"
publicclassDellLaptopextendsLaptop{
DellLaptop"
publicclassHpLaptopextendsLaptop{
HpLaptop"
publicclassLenovoLaptopextendsLaptop{
LenovoLaptop"
6.某软件公司欲开发一套界面皮肤库,可以对桌面软件进行界面美化。
不同的皮肤将提供视觉效果不同的按钮、文本框、组合框等界面元素,其结构如下图所示:
该皮肤库需要具备良好的灵活性和可扩展性,用户可以自由选择不同的皮肤,开发人员可以在不修改既有代码的基础上增加新的皮肤。
试使用抽象工厂模式设计该皮肤库,绘制类图并编程模拟实现。
SpringSkinFactoryskinFactory=newSpringSkinFactory();
skinFactory.createButton().action();
skinFactory.createTextbox().action();
skinFactory.createCombobox().action();
publicinterfaceSkinFactory{
publicAbstractButtoncreateButton();
publicAbstractTextboxcreateTextbox();
publicAbstractComboboxcreateCombobox();
publicclassSpringSkinFactoryimplementsSkinFactory{
publicAbstractButtoncreateButton(){
生成greenbutton"
returnnewGreenButton();
publicAbstractTextboxcreateTextbox(){
生成greentextbox"
returnnewGreenTextbox();
publicAbstractComboboxcreateCombobox(){
生成greencombobox"
returnnewGreenCombobox();
publicclassSummerSkinFactoryimplementsSkinFactory{
生成bluebutton"
returnnewBlueButton();
生成bluetextbox"
returnnewBlueTextbox();
生成bluecombobox"
returnnewBlueCombobox();
publicinterfaceAbstractButton{
publicvoidaction();
publicclassGreenButtonimplementsAbstractButton{
Override
publicvoidaction(){
Greenbutton"
publicclassBlueButtonimplementsAbstractButton{
Bluebutton"
publicinterfaceAbstractTextbox{
publicclassGreenTextboximplementsAbstractTextbox{
GreenTextbox"
publicclassBlueTextboximplementsAbstractTextbox{
BlueTextbox"
publicinterfaceAbstractCombobox{
publicclassGreenComboboximplementsAbstractCombobox{
GreenCombobox"
publicclassBlueComboboximplementsAbstractCombobox{
BluCombobox"
7.麦当劳(McDonalds)和肯德基(KFC)快餐店都经营汉堡(Hamburg)和可乐(Cola),用控制台应用程序实现这两个快餐店经营产品的抽象工厂模式,并绘制该模式的UML图。
Hamburgh;
Colac;
AbstractFactoryaf=newMDNFactory();
h=af.createHamburg();
c=af.createCola();
h.getHumburg();
c.getCola();
af=newKDJFactory();
publicinterfaceAbstractFactory{
publicHamburgcreateHamburg();
publicColacreateCola();
publicclassKDJFactoryimplementsAbstractFactory{
publicHamburgcreateHamburg(){
returnnewKDJHamburg();
publicColacreateCola(){
returnnewKDJCola();
publicclas
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 面向 对象 系统分析 设计 综合 实验 报告