黑马程序员技术交流社区

标题: 构造器 [打印本页]

作者: 周一川    时间: 2013-4-9 17:20
标题: 构造器
构造器Constructor是否可被override?
作者: 熊永标    时间: 2013-4-9 17:31
构造器是用于创建对象时被调用,从而进行初始化对象,不可以被子类重写,只被调用一次,不能象普通方法那样随时调用.是java的特殊函数.
作者: hacket    时间: 2013-4-9 19:41
  1. class Father
  2. {
  3.         Father(){
  4.                 System.out.println("this is father contrator");
  5.         }
  6. }
  7. class Son extends Father
  8. {
  9.         Father(){
  10.                 System.out.println("this is son");
  11.         }
  12.         Son(){}
  13. }
  14. public class ConstractorDemo
  15. {
  16.                 public static void main(String[] args){
  17.                         Son son = new Son();
  18.                         son.Father();
  19.                 }
  20. }
  21. /*
  22.         ConstractorDemo.java:9: 错误: 方法声明无效; 需要返回类型
  23.         Father(){
  24.         ^
  25. 1 个错误
  26. */
复制代码
自己看错误就知道额。

作者: 陈丽莉    时间: 2013-4-9 21:19
若还有问题,继续追问; 没有的话,将帖子分类改成【已解决】哦~

点进自己的帖子,编辑->标题左侧有下拉菜单->改变分类->保存~




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2