本帖最后由 杜天伟 于 2012-12-14 11:35 编辑
我这样编写
class Lianxi
{
public static void main(String[] args)
{
//System.out.println("Hello World!");
Person p=new Person();
new Person();
p.Person();
}
}
class Person
{
Person()
{
System.out.println("hello ");
}
}
编译不通过
提示 Lianxi.java:8: 错误: 找不到符号
p.Person();
^
符号: 方法 Person()
位置: 类型为Person的变量 p
1 个错误
这是为什么呢 |