整理设计模式软件体系结构实验4中南大学软件学院.docx
- 文档编号:4481916
- 上传时间:2022-12-01
- 格式:DOCX
- 页数:31
- 大小:312.52KB
整理设计模式软件体系结构实验4中南大学软件学院.docx
《整理设计模式软件体系结构实验4中南大学软件学院.docx》由会员分享,可在线阅读,更多相关《整理设计模式软件体系结构实验4中南大学软件学院.docx(31页珍藏版)》请在冰豆网上搜索。
整理设计模式软件体系结构实验4中南大学软件学院
设计模式-软件体系结构-实验4-中南大学-软件学院
编辑整理:
尊敬的读者朋友们:
这里是精品文档编辑中心,本文档内容是由我和我的同事精心编辑整理后发布的,发布之前我们对文中内容进行仔细校对,但是难免会有疏漏的地方,但是任然希望(设计模式-软件体系结构-实验4-中南大学-软件学院)的内容能够给您的工作和学习带来便利。
同时也真诚的希望收到您的建议和反馈,这将是我们进步的源泉,前进的动力。
本文可编辑可修改,如果觉得对您有帮助请收藏以便随时查阅,最后祝您生活愉快业绩进步,以下为设计模式-软件体系结构-实验4-中南大学-软件学院的全部内容。
《软件体系结构》
实验报告
项目名称结构型设计模式实验
专业班级
学号
姓名
实验成绩:
批阅教师:
年月日
实验4结构型设计模式实验
实验学时:
2
每组人数:
1
实验类型:
3(1:
基础性2:
综合性3:
设计性4:
研究性)
实验要求:
1(1:
必修2:
选修3:
其它)
实验类别:
3(1:
基础2:
专业基础3:
专业4:
其它)
一、实验目的
熟练使用PowerDesigner和任意一种面向对象编程语言实现几种常见的结构型设计模式,包括适配器模式、组合模式和外观模式,理解每一种设计模式的模式动机,掌握模式结构,学习如何使用代码实现这些模式。
二、实验内容
1。
现有一个接口DataOperation定义了排序方法sort(int[])和查找方法search(int[],int),已知类QuickSort的quickSort(int[])方法实现了快速排序算法,类BinarySearch的binarySearch(int[],int)方法实现了二分查找算法。
试使用适配器模式设计一个系统,在不修改源代码的情况下将类QuickSort和类BinarySearch的方法适配到DataOperation接口中。
绘制类图并编程实现。
(要求实现快速排序和二分查找,使用对象适配器实现)
2.WindowsMediaPlayer和RealPlayer是两种常用的媒体播放器,它们的API结构和调用方法存在区别。
现在你的应用程序需要支持这两种播放器API,而且在将来可能还需要支持新的媒体播放器,请问如何设计该应用程序?
绘制类图并编程模拟实现。
3.使用组合模式设计一个杀毒软件(AntiVirus)的框架,该软件既可以对某个文件夹(Folder)杀毒,也可以对某个指定的文件(File)进行杀毒,文件种类包括文本文件TextFile、图片文件ImageFile、视频文件VideoFile。
绘制类图并编程模拟实现。
4。
某教育机构组织结构如下图所示:
在该教育机构的OA系统中可以给各级办公室下发公文,试采用组合模式设计该机构的组织结构,绘制相应的类图并编程模拟实现,在客户端代码中模拟下发公文。
5。
某软件公司为新开发的智能手机控制与管理软件提供了一键备份功能,通过该功能可以将原本存储在手机中的通信录、短信、照片、歌曲等资料一次性全部拷贝到移动存储介质(例如MMC卡或SD卡)中。
在实现过程中需要与多个已有的类进行交互,例如通讯录管理类、短信管理类等,为了降低系统的耦合度,试使用外观模式来设计并编程模拟实现该一键备份功能。
6。
某信息系统需要提供一个数据处理和报表显示模块,该模块可以读取不同类型的文件中的数据并将数据转换成XML格式,然后对数据进行统计分析,最后以报表方式来显示数据。
由于该过程需要涉及到多个类,试使用外观模式设计该数据处理和报表显示模块.考虑到有些文件本身已经是XML格式,无须进行格式转换,为了让系统具有更好的扩展性,在系统设计中可以引入抽象外观类。
三、实验要求
1.结合实例,正确无误地绘制适配器模式、组合模式和外观模式的模式结构图;
2。
使用任意一种面向对象编程语言实现适配器模式、组合模式和外观模式实例,代码运行正确无误。
四、实验步骤
1。
结合实例,使用PowerDesigner绘制适配器模式实例结构图并用面向对象编程语言实现该模式实例;
2。
结合实例,使用PowerDesigner绘制适配器模式实例结构图并用面向对象编程语言实现该模式实例;
3.结合实例,使用PowerDesigner绘制组合模式实例结构图并用面向对象编程语言实现该模式实例;
4。
结合实例,使用PowerDesigner绘制组合模式实例结构图并用面向对象编程语言实现该模式实例;
5。
结合实例,使用PowerDesigner绘制外观模式实例结构图并用面向对象编程语言实现该模式实例;
6。
结合实例,使用PowerDesigner绘制外观模式实例结构图并用面向对象编程语言实现该模式实例。
五、实验结果
1.类图:
实现代码:
importutil。
XMLUtil;
publicclassClient{
publicstaticvoidmain(String[]args){
DataOperationdataOperation=(DataOperation)XMLUtil.getBean();
intiArray[]={1,3,2,5,4};
booleanresult=dataOperation。
search(iArray,9);
for(inti=0;i〈5;i++){
System.out。
println(iArray[i]);
}
System.out。
println(result);
}
}
publicinterfaceDataOperation{
publicvoidsort(int[]iArray);
publicbooleansearch(int[]iArray,inttarget);
}
publicclassDataOperationAdapterimplementsDataOperation{
privateQuickSortqSort;
privateBinarySearchbSearch;
publicDataOperationAdapter(){
qSort=newQuickSort();
bSearch=newBinarySearch();
}
@Override
publicvoidsort(int[]iArray){
qSort。
quickSort(iArray);
}
@Override
publicbooleansearch(int[]iArray,inttarget){
returnbSearch.binarySearch(iArray,target);
}
}
publicclassBinarySearch{
publicbooleanbinarySearch(int[]iArray,inttarget){
(newQuickSort()).quickSort(iArray);
if(bSearch(iArray,target,0,iArray.length—1)==-1){
returnfalse;
}
returntrue;
}
publicintbSearch(int[]iArray,inttarget,intlow,inthigh){
if(low>high){
return-1;
}
intmid=(high+low)/2;
if(iArray[mid]==target){
returnmid;
}elseif(iArray[mid]〈target){
returnbSearch(iArray,target,mid+1,high);
}elseif(iArray[mid]〉target){
returnbSearch(iArray,target,low,mid—1);
}else{
return-1;
}
}
}
publicclassQuickSort{
publicvoidquickSort(int[]iArray){
sort(iArray,0,iArray.length-1);
}
publicvoidsort(intarr[],intlow,inthigh){
intl=low;
inth=high;
intpovit=arr[low];
while(l〈h){
while(l
h—-;
if(l〈h){
inttemp=arr[h];
arr[h]=arr[l];
arr[l]=temp;
l++;
}
while(l〈h&&arr[l]〈=povit)
l++;
if(l〈h){
inttemp=arr[h];
arr[h]=arr[l];
arr[l]=temp;
h—-;
}
}
//print(arr);
//System.out。
print(”l="+(l+1)+"h="+(h+1)+”povit=”+povit
//+"\n");
if(l>low)
sort(arr,low,h-1);
if(h〈high)
sort(arr,l+1,high);
}
}
packageutil;
importjava.io。
File;
importjava。
io。
IOException;
importjavax.xml.parsers.DocumentBuilder;
importjavax。
xml.parsers.DocumentBuilderFactory;
importjavax.xml。
parsers.ParserConfigurationException;
importorg.w3c。
dom.Document;
importorg.w3c。
dom。
Node;
importorg。
w3c.dom。
NodeList;
importorg.xml。
sax。
SAXException;
publicclassXMLUtil{
publicstaticObjectgetBean(){
try{
//创建DOM文档对象
DocumentBuilderFactorydocFactory=DocumentBuilderFactory。
newInstance();
DocumentBuilderdocBuilder=docFactory。
newDocumentBuilder();
Documentdocument=docBuilder。
parse(newFile(”config.xml"));
//获取包含类名的文本节点
NodeListnl=document.getElementsByTagName(”className");
NodeclassNode=nl.item(0).getFirstChild();
StringclassName=classNode.getNodeValue();
//通过类名生成实例对象并将其返回
@SuppressWarnings("rawtypes")
Classclazz=Class.forName(className);
Objectobj=clazz.newInstance();
returnobj;
}catch(ParserConfigurationExceptione){
e.printStackTrace();
}catch(SAXExceptione){
e.printStackTrace();
}catch(IOExceptione){
e.printStackTrace();
}catch(ClassNotFoundExceptione){
e.printStackTrace();
}catch(InstantiationExceptione){
e。
printStackTrace();
}catch(IllegalAccessExceptione){
e.printStackTrace();
}
returnnull;
}
}
〈?
xmlversion="1.0"encoding="UTF-8”?
〉
〈className>DataOperationAdapter
〈/xml—body>
2。
类图:
实现代码:
importutil。
XMLUtil;
publicclassClient{
publicstaticvoidmain(String[]args){
Playerplayer=(Player)XMLUtil。
getBean();
player。
play();
}
}
publicinterfacePlayer{
voidplay();
}
publicclassRealPlayerAdapterimplementsPlayer{
publicRealPlayerrealPlayer;
publicRealPlayerAdapter(){
realPlayer=newRealPlayer();
}
publicvoidplay(){
realPlayer。
play();
}
}
publicclassRealPlayer{
publicvoidplay(){
System。
out.println(”RealPlayer。
。
.");
}
}
publicclassWMPlayerAdapterimplementsPlayer{
publicWindowsMediaPlayerwindowsMediaPlayer;
publicWMPlayerAdapter(){
windowsMediaPlayer=newWindowsMediaPlayer();
}
publicvoidplay(){
windowsMediaPlayer。
play();
}
}
publicclassWindowsMediaPlayer{
publicvoidplay(){
System。
out。
println(”WindowsMediaPlayer...”);
}
}
packageutil;
importjava。
io.File;
importjava.io。
IOException;
importjavax。
xml.parsers。
DocumentBuilder;
importjavax.xml.parsers.DocumentBuilderFactory;
importjavax.xml。
parsers。
ParserConfigurationException;
importorg.w3c。
dom.Document;
importorg.w3c.dom。
Node;
importorg。
w3c.dom.NodeList;
importorg。
xml.sax.SAXException;
publicclassXMLUtil{
publicstaticObjectgetBean(){
try{
//创建DOM文档对象
DocumentBuilderFactorydocFactory=DocumentBuilderFactory。
newInstance();
DocumentBuilderdocBuilder=docFactory。
newDocumentBuilder();
Documentdocument=docBuilder。
parse(newFile(”config。
xml”));
//获取包含类名的文本节点
NodeListnl=document。
getElementsByTagName("className”);
NodeclassNode=nl.item(0)。
getFirstChild();
StringclassName=classNode.getNodeValue();
//通过类名生成实例对象并将其返回
@SuppressWarnings("rawtypes”)
Classclazz=Class.forName(className);
Objectobj=clazz.newInstance();
returnobj;
}catch(ParserConfigurationExceptione){
e。
printStackTrace();
}catch(SAXExceptione){
e。
printStackTrace();
}catch(IOExceptione){
e.printStackTrace();
}catch(ClassNotFoundExceptione){
e。
printStackTrace();
}catch(InstantiationExceptione){
e。
printStackTrace();
}catch(IllegalAccessExceptione){
e.printStackTrace();
}
returnnull;
}
}
〈?
xmlversion=”1。
0”encoding="UTF—8”?
〉
〈xml-body〉
〈/xml—body〉 3.类图: 实现代码: publicclassClient{ publicstaticvoidmain(String[]args){ AbstractFilekejian=newFolder(”课件"); AbstractFiledasan=newFolder("大三课件"); AbstractFileshejimoshi=newFolder("设计模式”); AbstractFileshiyanyaoqiu=newTextFile("实验要求"); AbstractFileliucheng=newImageFile("实验流程图"); AbstractFileshinian=newVideoFile(”十年video”); AbstractFilesjkejian=newTextFile(”设计模式课件”); AbstractFileshiyanbaogao=newFolder("实验报告"); AbstractFileshiyanbaogao1=newTextFile(”设计模式实验报告1”); AbstractFileshiyanbaogao2=newTextFile("设计模式实验报告2"); AbstractFileshiyanbaogao3=newTextFile(”设计模式实验报告3”); AbstractFileshiyanbaogao4=newTextFile(”设计模式实验报告4"); kejian。 add(dasan); dasan.add(shejimoshi); shejimoshi。 add(shiyanyaoqiu); shejimoshi.add(liucheng); shejimoshi.add(shinian); shejimoshi。 add(sjkejian); shejimoshi。 add(shiyanbaogao); shiyanbaogao。 add(shiyanbaogao1); shiyanbaogao.add(shiyanbaogao2); shiyanbaogao。 add(shiyanbaogao3); shiyanbaogao。 add(shiyanbaogao4); kejian.antivirus(); } } publicabstractclassAbstractFile{ protectedStringname; publicabstractvoidantivirus(); publicabstractvoidadd(AbstractFileabstractFile); publicabstractvoidremove(AbstractFileabstractFile); } importjava.util。 ArrayList; publicclassFolderextendsAbstractFile{ privateArrayList〈AbstractFile>fileList; publicFolder(Stringname){ this.name=name; fileList=newArrayList〈AbstractFile〉(); } @Override publicvoidantivirus(){ System。 out.println(name+”antivirus(Folder)"); for(AbstractFilefile: fileList){ file.antivir
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 整理 设计 模式 软件 体系结构 实验 中南 大学 学院