java装饰模式。通过装饰完成对上层类的封装。

源代码在线查看: body.java

软件大小: 91 K
上传用户: faye3000
关键词: java 装饰 模式 封装
下载地址: 免注册下载 普通下载 VIP

相关代码

				import java.io.*;
				public class body extends abs
				{
					abs theAbs;
				
					public body(abs theAbs)
					{
						this.theAbs=theAbs;
					}
					/*print the body*/
					public void display()
					{
						theAbs.display();
						System.out.println("-----------------------------------------------\n");
						System.out.println("Item      Units        Unit Price      Subtotal\n");
					}
					public double getFinalCost()
					{
						return theAbs.getFinalCost();
					}
				}			

相关资源