how can i declare an unsign long integer in java

how can i declare an unsign long integer in javain c we useunsigned long asd=0;what is the notation in java for that statement
[154 byte] By [debashis01a] at [2007-10-3 6:30:17]
# 1
Basically you can't. But it rarely matters. Primitives in Java are all signed, except char (and, of course, boolean).
malcolmmca at 2007-7-15 1:17:18 > top of Java-index,Java Essentials,Java Programming...
# 2
No can do.A quick google brings up: http://www.darksleep.com/player/JavaAndUnsignedTypes.html
mlka at 2007-7-15 1:17:18 > top of Java-index,Java Essentials,Java Programming...
# 3
There is no unsigned long in java.the long in java is a 64 bit signed value in 2's complement form.Pravin
PMJaina at 2007-7-15 1:17:18 > top of Java-index,Java Essentials,Java Programming...
# 4
There is no whole number type which is larger than long and so thislink does not help for long type.
PMJaina at 2007-7-15 1:17:18 > top of Java-index,Java Essentials,Java Programming...
# 5
BigDecimal or BigInteger objects store numbers of arbitary length. Of course the overheads are higher.
malcolmmca at 2007-7-15 1:17:18 > top of Java-index,Java Essentials,Java Programming...