Results 1 to 4 of 4
Thread: Java Disassembler
- 08-21-2013, 11:54 AM #1
Java Disassembler
Java Code:class Gen<T>{ T t; Gen(T t){this.t = t;} T getObj(){ return t; } }
Java Code:class Gen extends java.lang.Object{ java.lang.Object t; Gen(java.lang.Object); java.lang.Object getObj(); }
Java Code:C:\Users\Mohammad Allaudin\Desktop>javap Gen Compiled from "gen.java" class Gen<T> { T t; Gen(T); T getObj(); }
- 08-21-2013, 03:43 PM #2
Re: Java Disassembler
Why do you think it should give the first output?
How to Ask Questions the Smart Way
Static Void Games - GameDev tutorials, free Java and JavaScript hosting!
Static Void Games forum - Come say hello!
- 08-21-2013, 05:00 PM #3
Re: Java Disassembler
I wrote this code and output form book (Java Complete Reference) thats why ..
- 08-21-2013, 05:05 PM #4
Re: Java Disassembler
I'm not sure what the book says, but I get the same output as you.
How to Ask Questions the Smart Way
Static Void Games - GameDev tutorials, free Java and JavaScript hosting!
Static Void Games forum - Come say hello!
Similar Threads
-
Java disassembler
By gyijhbk in forum New To JavaReplies: 7Last Post: 05-01-2012, 10:25 AM
Bookmarks