标题: 构造函数 [打印本页] 作者: 正在输入... 时间: 2015-2-18 13:35 标题: 构造函数 public class Fu {
int i = 10;
public Fu{
System.out.println("fu构造");
}
public void show(){
System.out.println("父show");
}
}
写上public的话public就报错Syntax error on token "public", class expected after this token
不写public的话Fu就报错Syntax error on token "Fu", delete this token作者: 传慈 时间: 2015-2-19 01:06
public Fu(){
}作者: liaohongjie 时间: 2015-2-19 10:30
你的构造函数后面怎么没有括号啊作者: 艺多不压身丶 时间: 2015-2-19 10:39