2012年11月1日

装饰练习

摘要: public class zhuangshiDemo{ public static void main(String[] args) { new superperson(new person()).eat(); }}class person{ public void eat() { System.out.println("吃家常饭"); }}class superperson{ private person p; public superperson(person p) { this.p=... 阅读全文

posted @ 2012-11-01 22:41 蝌蚪的精神 阅读(112) 评论(0) 推荐(0) 编辑

JavaScript对象练习

摘要: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=GBK"> <title>Untitled Document</title> </head> <bod 阅读全文

posted @ 2012-11-01 15:45 蝌蚪的精神 阅读(329) 评论(0) 推荐(0) 编辑

导航