摘要: Request | V ActionServlet | V 如果不存在相应的Action则否则返回error,流程结束 ... 阅读全文
posted @ 2008-03-13 23:50 玉米疯收 阅读(658) 评论(1) 推荐(0) 编辑
摘要: 85个专业ajax解决方案(图) Smashing Magazine给出了85个专业ajax解决方案,它们几乎涵盖了所有的ajax使用场景,而且个个都带图,选你喜欢的,然后下载示例代码就是了! AJAX Auto Completer 1. AJAX AutoSuggest: An AJAX auto-complete text field 2. AJAX Autocompleter / sc... 阅读全文
posted @ 2008-03-13 23:47 玉米疯收 阅读(542) 评论(0) 推荐(0) 编辑
摘要: 啥也不说了,看代码: public class Instrument { protected void play() { System.out.println("Instrument playing"); } static void tune(Instrument i) { i.play(); } } pu... 阅读全文
posted @ 2008-03-13 23:07 玉米疯收 阅读(498) 评论(2) 推荐(0) 编辑
摘要: public class Insect { int i=9; int j; Insect() { prt("i="+i+",j="+j); j=39; } static int x1=prt("static Insect.x1 ... 阅读全文
posted @ 2008-03-13 21:53 玉米疯收 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 真是"挤出来"的时间学习呢,不多说,看代码: 1 2class A { 3 int i=9; 4 A() 5 { 6 i=10; 7 } 8 static ii=100; 9} 10 11class B extends A 12{ 13 int o=11 14 B() 15 { 16 o=111; ... 阅读全文
posted @ 2008-03-13 21:28 玉米疯收 阅读(234) 评论(0) 推荐(0) 编辑