vote up 2 vote down star

I tried decompiling a Java application to which I do not have the source code and a strange thing showed up. At the top of the constructor for a class, there is a line that says

this = this

What does this (not this) mean? Is this just an artifact of the decompilation process? Or is it just some ugly hack? Can this be assigned to something else? If so, what does

this = null

mean?

flag

It might be useful to say which decompiler - it's not legal Java. Also javap -c will give you the actual bytecodes. – Tom Hawtin - tackline Jul 8 at 17:37
1  
(Is it an inner class setting the outer instance?) – Tom Hawtin - tackline Jul 8 at 17:38
4  
There is a chance, that the bytecode is obfuscated to prevent decompiling. Using illegal variable names like Java keywords is a nice practice... – Andreas_D Jul 8 at 17:43
en.wikipedia.org/wiki/JAD_%28JAva_Decompiler%29/… – Andrew Keeton Jul 8 at 17:44
1  
Maybe try java.decompiler.free.fr to check if it produces the same results !? – Andreas_D Jul 8 at 17:51
show 3 more comments

1 Answer

vote up 3 vote down check

this is final. You definitely cannot assign it. I'd guess this is a disassembler artifact.

There's some potential goofy-ness with inner classes (which hold this pointers to the outer class), but those lines as written are not valid Java.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.