示例#1
0
 /** @param args */
 public static void main(String[] args) {
   Printable p = new PrinterProxy("Alice");
   System.out.println("名前は現在" + p.getPrinterName() + "です");
   p.setPrinterName("Bob");
   System.out.println("名前は現在" + p.getPrinterName() + "です");
   p.print("Hello, world.");
 }