-
-
Save draftcode/1345291 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .class public A | |
| .super java/lang/Object | |
| .method static method()F | |
| fconst_1 | |
| freturn | |
| .end method | |
| .method static method()I | |
| iconst_1 | |
| ireturn | |
| .end method | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class B { | |
| public static void main(String []args) { | |
| // This results changes which method will occur in A.class | |
| java.lang.System.out.println(A.method()); // 1 or 1.0 | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment