请各位多帮助呀!!!怎么样给BYTE类型的指针赋长度?(20分)

  • 主题发起人 主题发起人 sjw16
  • 开始时间 开始时间
S

sjw16

Unregistered / Unconfirmed
GUEST, unregistred user!
谢谢各位!!!
祝大家新年快乐!!!
 
请给点建议呀。
 
不太明白你的意思,byte只有一位,你要它的长度作什么用
var
b: ^byte;
tt: string;
begin
tt :='0123456789';
getmem(b,10);
strPcopy(pchar(b),tt);
showmessage(char(b^));
inc(b);
showmessage(char(b^));
dec(b);
if assigned(b) then
freemem(b,10);
end;
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
900
SUNSTONE的Delphi笔记
S
I
回复
0
查看
694
import
I
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部