摘要:
Request | V ActionServlet | V 如果不存在相应的Action则否则返回error,流程结束 ... 阅读全文
摘要:
85个专业ajax解决方案(图) Smashing Magazine给出了85个专业ajax解决方案,它们几乎涵盖了所有的ajax使用场景,而且个个都带图,选你喜欢的,然后下载示例代码就是了! AJAX Auto Completer 1. AJAX AutoSuggest: An AJAX auto-complete text field 2. AJAX Autocompleter / sc... 阅读全文
摘要:
啥也不说了,看代码: public class Instrument { protected void play() { System.out.println("Instrument playing"); } static void tune(Instrument i) { i.play(); } } pu... 阅读全文
摘要:
public class Insect { int i=9; int j; Insect() { prt("i="+i+",j="+j); j=39; } static int x1=prt("static Insect.x1 ... 阅读全文
摘要:
真是"挤出来"的时间学习呢,不多说,看代码: 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; ... 阅读全文