java幾種資料轉換

2021-08-13 18:46:30 字數 2167 閱讀 3038

/**

* 將兩個位元組轉換成整型

*@param input the input

*@return the int from the array

*/public

static

intgetintfrom2bytearray(final

byte input)

/*** 將乙個位元組轉換成整型

* * for example, ff will be converted to 255 and not -1.

**@param bite the byte

*@return the int from byte

*/public

static

intgetintfrombyte(final

byte bite)

/*** 將位元組陣列轉換成整型

**@param bytes the bytes

*@return the int from byte array

*/public

static

intgetintfrombytearray(final

byte bytes)

/*** 將位元組陣列轉換成長整型

**@param bytes the bytes

*@return the long from byte array

*/public

static

long

getlongfrombytearray(final

byte bytes)

/*** 將位元組陣列前後倒置

**@param array the array

*/public

static

void

invertarray(final

byte array)

}/**

* int數值轉換為byte陣列,高位在前

*@param value

*@param n

*@return

*/public

static

byte inttobyteshigh(int value, int n)

return src;

}/**

* int數值轉換為byte陣列,低位在前

*@param value

*@param n

*@return

*/public

static

byte inttobyteslow(int value, int n)

return src;

}/**

* byte陣列轉換為int,高位在前

*@param bytes

*@param offset

*@return

*/public

static

intbytestointhigh(byte bytes, int offset)

for(int i = 0; i < bytes.length; i++)

return value;

}/**

* byte陣列轉換為int,低位在前

*@param bytes

*@param offset

*@return

*/public

static

intbytestointlow(byte bytes, int offset)

for(int i = 0; i < bytes.length; i++)

return value;

}/**

* ascii字串轉換成16進製制

*@param str

*@return

*/public

static string convertstringtohex(string str)

return hex.tostring();

}/**

* 16進製制轉換成ascii字串

*@param hex

*@return

*/public

static string converthextostring(string hex)

return sb.tostring();

}

qt幾種資料型別轉換

1 int型轉十六進製制 補0 qstring s s qstring 1 arg k,4,16,qlatin1char 0 k為int或char都可,第二個引數為資料寬度,第三個引數為進製 不補 0 s qstring number k,16 2 十六進製制轉浮點數 正數 qstring str ...

C 幾種資料型別轉換

1.int 變數名 強制型別轉換 該轉換方式主要用於數字型別之間的轉換,從int型別向long,float,double,decimal 型別轉換可以使用隱式轉換,但從long型到int 就需要使用顯示轉換,即使用該型別的轉換方式否則產生編譯錯誤。該方式對於浮點數會無條件的捨去,會失去精確度 對於c...

C 中幾種資料型別轉換

c 中經常會需要資料型別轉換,比如int char,cstring 到string char uchar 等等。unicode 字符集下 cstring 轉 string void ustrtoascchar const cstringw cs,char buff string 轉cstring c...