: Thursday, September 02, 1999 4:03 AM
> To: [EMAIL PROTECTED]
> Cc: [EMAIL PROTECTED]
> Subject: compiling files
>
>
> Hello All,
>
> I am using JDK1.2 pre v2 on RH6.0. I am facing a typical problem.
> Consider the situation:
>
> file1.java
>
> class file1{
&
Hello All,
I am using JDK1.2 pre v2 on RH6.0. I am facing a typical problem.
Consider the situation:
file1.java
class file1{
public file1(){
xx=new file2();
}
}
file2.java
class file2(){
public file2(){
yy=new file3();
}
}
file3.java
class file3(){
public file3(){
}
}
Now, when i c