在Java中施用无符号整型

在Java中使用无符号整型在项目要使用无符号整型,可以在项目中加入joou.jar ,用法如下import static org.jo

在Java中使用无符号整型

在项目要使用无符号整型,可以在项目中加入joou.jar ,用法如下

import static org.joou.Unsigned.*;// and then...UByte b = ubyte(1);UShort s = ushort(1);UInteger i = uint(1);ULong l = ulong(1);

?joou官网: http://www.jooq.org

google code主页:http://code.google.com/p/joou/