Name: pa48320 Date: 10/26/99
Create the following 2 classes:
public class a
{
public a()
{
B b = new B();
System.out.println(b.value.toString());
}
}
public class B
{
public final B value = this;
public B(){}
public String toString()
{
return "Hello World";
}
}
Compile a.java first. You will get the following error:
.\B.java:4: cannot resolve symbol
symbol : variable this
location: class B
public final B value = this;
^
1 error
(Review ID: 97072)
======================================================================