Hi all, I have a class which .class name is $clase.class and by decompiling it, I saw that the name in the source code was _cls$clase. Why the names are different. Which is the trick? Thanks. Cristian.
Yeah, but, usually the name of .class in nested classes is parent$child.class In this case the name inside the .java file (source code) is _cls$Base and the name of the .class file is $Base.class Here it's the source code resulting after decompile a $Base.class file: class _cls$Base{ .............. .............. .............. } Thanks. Critian