45fan.com - 路饭网

搜索: 您的位置主页 > 网络频道 > 阅读资讯:string与PChar的详细解说

string与PChar的详细解说

2016-08-31 13:43:45 来源:www.45fan.com 【

string与PChar的详细解说

来自Delphi Help 关键字String to PChar conversions
长字符串转换到PChar不是自动的。他们之间的不同点导致他们的转换存在问题。
1,长字符串是引用计数的,而PChar不是
2,赋值给长字符串是数据的拷贝,而PChar是指向数据的指针。
3,长字符串是空止符结尾,并包含有字符串的长度。而PChar是简单的空止符结尾。( 空止符结尾指以#0结尾)

procedure my_func(x: string);
begin
some_proc(PChar(x)); //参照第一条,这么做自己负责x的生存期
end;

function title(n: Integer): PChar;
var
s: string;
begin
s := Format('title - %d', [n]);
Result := PChar(s); // 参照第2条,不能这么做
end;
 

本文地址:http://www.45fan.com/a/question/70333.html
Tags: string Delphi PChar
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部