博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TBitConverter
阅读量:5889 次
发布时间:2019-06-19

本文共 1591 字,大约阅读时间需要 5 分钟。

TBitConverter

FromBcd  

FromByte  
FromCurrency  
FromDouble  
FromExtended  
FromInteger  
FromLargeInt  
FromLongBool  
FromLongInt  
FromLongWord  
FromShortInt  
FromSingle  
FromSmallInt  
FromSqlTimeStamp  
FromSqlTimeStampOffset  
FromVariant  
FromWord  
FromWordBool  

TBitConverter provides two main class functions:

  • converts a value in a Delphi native type into an array of bytes.
  • converts an array of bytes into a Delphi native type.

 

Data.DB.TBitConverter.FromCurrency

From RAD Studio API Documentation
 

FromCurrency From

Delphi
class procedure FromCurrency(Value: Currency; Buffer: TArray
);
C++
__classmethod void __fastcall FromCurrency(System::Currency Value, System::DynamicArray
Buffer); >>>>>>> Delphi
class procedure From
(const Value: T; var B: TArray
; Offset: Integer = 0); static;

C++

void __fastcall TBitConverter::From(const T Value, System::DynamicArray
&B, int Offset)

 ToInteger InTo

Data.DB.TBitConverter.ToIntegerFrom RAD Studio API Documentation 

Delphi

class function ToInteger(Value: TArray<Byte>): Integer;

C++

__classmethod int __fastcall ToInteger(System::DynamicArray<System::Byte> Value);

 

System.Types.TBitConverter.InTo     From RAD Studio API Documentation 

Delphi

class function InTo<T>(const B: TArray<Byte>; Offset: Integer = 0): T;

static;C++

__fastcall TBitConverter::InTo(const System::DynamicArray<System::Byte> B, int Offset)

<T>必须是明确的类型 

Data := TBitConverter.InTo<double>(Buffer);

转载地址:http://ndgix.baihongyu.com/

你可能感兴趣的文章
贪食蛇
查看>>
201521123009 《Java程序设计》第11周学习总结
查看>>
Python3之多线程学习
查看>>
MVC和MTV结构分析
查看>>
(转)微信网页扫码登录的实现
查看>>
mariadb启动报错:[ERROR] Can't start server : Bind on unix socket: Permission denied
查看>>
nginx的信号量
查看>>
云im php,网易云IM
查看>>
河南农业大学c语言平时作业答案,河南农业大学2004-2005学年第二学期《C语言程序设计》期末考试试卷(2份,有答案)...
查看>>
c语言打开alist文件,C语言 文件的打开与关闭详解及示例代码
查看>>
c语言 中的共用体和结构体如何联合定义,结构体(Struct)、联合体(Union)和位域
查看>>
SDL如何嵌入到QT中?!
查看>>
P1026 统计单词个数
查看>>
[js高手之路] html5 canvas系列教程 - 状态详解(save与restore)
查看>>
poi excel 常用api
查看>>
AD提高动态的方法(附SNR计算)
查看>>
[转]轻松实现可伸缩性,容错性,和负载平衡的大规模多人在线系统
查看>>
五 数组
查看>>
也谈跨域数据交互解决方案
查看>>
EntityFramework中使用Include可能带来的问题
查看>>