本帖最后由 风乐 于 2013-6-6 13:23 编辑
- class test
- {
- public test()<font color="#ff8c00">//lz注意,这个是构造函数,是用来初始化对象用的</font>
- {
- System.out.print("2");
- }
- public static void main(String[] args)
- {
- test s=new test();<font color="#ff8c00">//这里new了后便直接使用了构造函数进行初始化</font>
- //test s;
- //s. test();
- System.out.println("1");
- }
- }
复制代码 对象调用方法必须有返回值(没具体返回类型也必须标明void),构造函数不能有这种修饰,用对象调用其无意义的。lz注意区分一般方法和构造方法的区别,能不能用返回类型修饰符这个算一条
|