(完整版)上机练习1_第1页
(完整版)上机练习1_第2页
(完整版)上机练习1_第3页
(完整版)上机练习1_第4页
已阅读5页,还剩3页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、上机练习 11 题目:使用简单工厂模式设计一个可以创建不同几何形状(如圆形、方形和三角形等)的绘图工具,每个几何图形都要有绘制draw()和擦除 erase()两个方法,要求在绘制不支持的几何图形时,提示一个UnSupportedException。import javax.xml.parsers.*;import org.w3c.dom.*;import org.xml.sax.SAXException;import java.io.*;public class Clientpublic static void main(String args)trytuxing tx;String sha

2、pe=XMLUtiltx.getshape();tx=txFducetx(shape);tx.draw();tx.erase();catch(Exception e)System.out.println(e.getMessage();class XMLUtiltx/该方法用于从 XML 配置文件中提取形状,并返回该形状名称public static String getshape()try/创建文档对象DocumentBuilderFactorydFactory=DocumentBuilderFactory.newInstance();DocumentBuilder bui

3、lder = dFactory.newDocumentBuilder();Document doc;doc = builder.parse(new File("configtx.xml");/获取包含图形名称的文本节点NodeList nl = doc.getElementsByTagName("shape"); Node classNode=nl.item(0).getFirstChild(); String shape=classNode.getNodeValue().trim(); return shape;catch(Exception e)e.

4、printStackTrace();return null;interface tuxingpublic void draw();public void erase();class triangle implements tuxingpublic void draw()System.out.println("正在绘制三角形 ");public void erase()System.out.println("正在擦除三角形 ");class rectangle implements tuxingpublic void draw()System.out.pr

5、intln("正在绘制方形 ");public void erase()System.out.println("正在擦除方形 ");class circle implements tuxingpublic void draw()System.out.println("正在绘制圆形 ");public void erase()System.out.println("正在擦除圆形 ");class txFactorypublic static tuxing producetx(String shape)throws E

6、xceptionif(shape.equalsIgnoreCase("triangle")System.out.println("绘制三角形 ");return new triangle();else if(shape.equalsIgnoreCase("rectangle")System.out.println("绘制方形! ");return new rectangle();else if(shape.equalsIgnoreCase("circle")System.out.println(

7、"绘制圆形! ");return new circle();elsethrow new Exception("对不起,不支持绘制该图形!");2 题目:使用简单工厂模式模拟女娲 (Nvwa)造人(Person),如果传入参数 M ,则返回一个 Man 对象,如果传入参数 W,则返回一个 Woman 对象,用 Java语言实现该场景。现需要增加一个新的 Robot 类,如果传入参数 R,则返回一个Robot 对象,对代码进行修改并注意女娲的变化。import javax.xml.parsers.*;import org.w3c.dom.*;import o

8、rg.xml.sax.SAXException;import java.io.*;public class Clientpublic static void main(String args)tryPeople p;String sex=XMLUtilpeople.getsex();p=Nducepeople(sex);p.makepeople();catch(Exception e)System.out.println(e.getMessage();class XMLUtilpeople/该方法用于从 XML 配置文件中提取性别,并返回该性别 public static Str

9、ing getsex()try/创建文档对象DocumentBuilderFactorydFactory=DocumentBuilderFactory.newInstance();DocumentBuilder builder = dFactory.newDocumentBuilder();Document doc;doc = builder.parse(new File("configpeople.xml");/获取包含性别的文本节点NodeList nl = doc.getElementsByTagName("sex");Node classNode

10、=nl.item(0).getFirstChild();String sex=classNode.getNodeValue().trim();return sex;catch(Exception e)e.printStackTrace();return null;interface Peoplepublic void makepeople();class Man implements Peoplepublic void makepeople()System.out.println("女娲造人男 ");class Woman implements Peoplepublic v

11、oid makepeople()System.out.println("女娲造人女 ");class Robot implements Peoplepublic void makepeople()System.out.println("女娲造人机器人 ");class Nvwapublic static People producepeople(String sex) throws Exceptionif(sex.equalsIgnoreCase("M")System.out.println("女娲造出一个男孩! ");return new Man();else if(sex.equalsIgnoreCase("W")System.out.println("女孩造出一个女孩! &

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论