Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can anynody explain this?

Status
Not open for further replies.

MavrickStl

Programmer
Feb 20, 2001
71
US
Hi Guys,

I am trying to compile YesNoDialog.java file, which is used to put of Yes and No dialog box on the web page. When I compile YesNoDialog.java files it creates two class files:

1) YesNoDialog.class
2) YesNoDialog$1.class


I have no idea what is YesNoDialog$1.class is been created for? Can anyone please answer my question....

Thanks,

Mav


P.S. I am using JDK 1.1.6
 
It looke like an innerclass...

happens if you fx define a cass in another class

public class a
{
public a()
{
}

class b extends somotherclass
{

}
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top