Package org.vmmagic.unboxed

Examples of org.vmmagic.unboxed.Word.toInt()


    public static void main(String[] args) {
        Word w = Word.fromInt(0x54);
        Word w2 = Word.zero();
        Word w3 = w.add(w2);
        System.out.println(w3.toInt());
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.