You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the original class is not final you can create a class that extends it,
creating direct JVM byte-code, and loading the created class. Then creating an
instance of the extended class will invoke the constructor of the extending
class, but since the JVM code is generated calling the superconstructor can be
skipped (simply not generating the code into the constructor that invokes
super).
You may perhaps even create the extending class if the original class is final
accessing the original class object already loaded and altering the "final"
modifier using reflection.
Original issue reported on code.google.com by [email protected] on 16 Aug 2013 at 8:01
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 16 Aug 2013 at 8:01The text was updated successfully, but these errors were encountered: