I have compiles one java file, suppose test.java using javac test.java
after compilation,it generates two class files test.class and test$.class.
any one help me about that $ class files.The code is working fine.I need to understand $ class files.
is it a temp file ?
below is my code package test.myfolder;
public class test{
public String Login;
public String Name;
public String Num;
public String AccNum;
public test()
{
this.Login = Abc.getMissChar();
this.Name = Abc.getMissChar();
this.Num = Abc.getMissChar();
this.AccNum = Abc.getMissChar();
}
public test(String pLogin, String pName, String pNum, String pAccNum)
{
this.Login = pLogin;
this.Name = pName;
this.Num = pNum;
this.AccNum = pNum;
}
public String getLogin() {
return Login;
}
public String getName() {
return Name;
}
public String getNum() {
return Num;
}
public String getAccNum() {
return AccNum;
}