国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

如何將integer串轉化成byte數組

2019-11-18 18:27:15
字體:
來源:轉載
供稿:網友
 

How to Convert a String of Integers into an Array of Byte
如何將integer串轉化成byte數組

The best solution is to dynamically create an array of byte that has length equal to that of the string. Once you have your array you can fill the array with the values from the string, however there is some offset since the ascii rePResentation of the character '1' isn't equivalent to 1.
最好的解決方案是動態的創建一個與這個串長度相同的byte數組。一旦您得到了數組您就可以用串中的值填充數組,但是因為ASC字符'1'并不與1相等,所以有一個偏移量。
Below is a sample of how one might return an array of byte:
下面是一個如何返回byte數組的例子:

~~~~~~~~~~~~~~~~~~~~~~~~~
interface
uses
   ...
type
   dynamic array type for Array of Byte
   TByteArr = array of byte;

   ...
implementation

function ArrOfByte(AStr: String): TByteArr;
var
   j: integer;
begin
   SetLength( Result, Length(AStr)) ;
   for j := 0 to Length(AStr) - 1 do
     Result[j] := ord(AStr[j + 1]) - 48;
end;


上一篇:第三方控件使用方法

下一篇:溫和的關閉連接

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
學習交流
熱門圖片

新聞熱點

疑難解答

圖片精選

網友關注

主站蜘蛛池模板: 天祝| 枞阳县| 美姑县| 清丰县| 商丘市| 遂平县| 博野县| 阿勒泰市| 明溪县| 大邑县| 泌阳县| 常德市| 海口市| 大英县| 宁远县| 浑源县| 察哈| 眉山市| 张家港市| 木兰县| 银川市| 招远市| 弥勒县| 乐亭县| 南阳市| 荥经县| 遂宁市| 汶川县| 上林县| 离岛区| 宜章县| 郎溪县| 抚松县| 博爱县| 新郑市| 应城市| 都江堰市| 诸城市| 新乡市| 简阳市| 伊吾县|