Originally Posted by
raj_java_j2ee
class another_cons
{
int x,y;
another_cons(int a,int b)
{
x=a;
y=b;
}
another_cons()
{
another_cons(1,2);
}
public static void main(String args[])
{
another_cons p=new another_cons();
System.out.println("x="+p.x+"y="+p.y);
}
}
C:\forte_jdk\j2sdk1.4.0\bin>javac another_cons.java
another_cons.java:11: cannot resolve symbol
symbol : method another_cons (int,int)
location: class another_cons
another_cons(1,2);
^
1 error
friends can any one explain while i am getting this error