我是编程新手,所以我只是尝试一些简单的程序...
public class simple {
public static void main(String[] args) {
A ob=new A(10,20);
System.out.println("values of a and b are "+ob.a+" "+ob.b);
} ^
} ^
public class A {
int a;
private int b;
A(){}
A(int c,int d)
{
a=c;
b=d;
}
}
显示的错误是field ob.b not visible
..我正在使用eclipse,需要知道上面的代码有什么问题..
谢谢!