- 浏览: 7758 次
- 性别:
- 来自: 广州
-
最新评论
-
xiaosong21:
次是think in java 中的例子改装
java组合与继承例子
文章列表
调查兵团---Jason(appetiteFor) 2014-03-03 22:40:21
what is ur major
Mary-新疆(huluya) 2014-03-03 22:40:22
and I learnt Janpanese for month
调查兵团---Jason(appetiteFor) 2014-03-03 22:40:42
good, so u are a student now
Mary-新疆(huluya) 2014-03-03 22:41:02
nope I just wandering aroud haha ...
http://blog.csdn.net/jzhiy/article/details/9116039
http://blog.csdn.net/zjtbetter/article/details/11786245
http://blog.csdn.net/crackly/article/details/8947781
import java.io.Serializable;
import java.sql.SQLException;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import org.apache.log4j.Logger;
import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.springframework.dao. ...
class Plate{
Plate(int i){
System.out.println("Plate constructor");
}
}
class DinnerPlate extends Plate{
DinnerPlate(int i) {
super(i);//必须初始化基类构造器
System.out.println("DinnerPlate constructor");
}
}
class Utensil{
//两个不同构造器,便于测试子类不能同时同地初始化
Utensil(String s){
...
本文出自:http://www.blogjava.net/canonical/archive/2011/12/25/367146.html
浏览器前端编程的面貌自2005年以来已经发生了深刻的变化,这并不简单的意味着出现了大量功能丰富的基础库,使得我们可以更加方便的编写业务代码,更重要的是我们看待前端技术的观念发生了重大转变,明确意识到了如何以前端特有的方式释放程序员的生产力。本文将结合jQuery源码的实现原理,对javascript中涌现出的编程范式和常用技巧作一简单介绍。
1. AJAX: 状态驻留,异步更新
首先来看一点历史。
A. 1995年Netscape公司的Bren ...