Here you can find the source of intToUnsignedInt(int data)
Parameter | Description |
---|---|
data | a parameter |
public static long intToUnsignedInt(int data)
//package com.java2s; //License from project: Apache License public class Main { /**//from w w w. j a v a2 s.c o m * int to unsigned int * * @param data * @return long(just store the unsigned int) */ public static long intToUnsignedInt(int data) { return data & 0xffffffffL; } }