我尝试遵循所有语法规则,但是无法运行我的代码。错误找不到符号 ...
主班
public class Main {
public static void main(String[] args) {
Test my = new Test();
my.disp();
}
}
测试类
class Test {
int a ;
int b;
Test()
{
System.out.println("Default constructor" );
a=102;
b=183;
}
void display()
{
System.out.println("Value of A" + a);
System.out.println("Value of B" + b);
}
}
答案 0 :(得分:3)
您正在调用my.disp()
,但是类中有一个display()
函数,而不是disp()