在Delphi中使用指针参数
2006-02-04 13:46:14 来源:WEB开发网核心提示: 在c语言中用function (int ^par)很方便,查过好多资料没找到Delphi的用法,在Delphi中使用指针参数,今晚没事突然想起用Delphi万能指针Pointer(无类型指针)应该可以代替,测试一下通过
在c语言中用function (int ^par)很方便,查过好多资料没找到Delphi的用法,
今晚没事突然想起用Delphi万能指针Pointer(无类型指针)应该可以代替。测试一下通过。
PRocedure xx(a:pchar);
var
tm:^TAdodataset;
begin
tm:=Pointer(a);
...
end;
procedure bb;
var
tm:TAdodataset;
begin
tm...
xx(@tm);
end;
更多精彩
赞助商链接