WinAPI 字符及字符串函数(10): lstrcpy - 复制字符串


本文整理自网络,侵删。

 WinAPI 字符及字符串函数(10): lstrcpy - 复制字符串 
unit Unit1;

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
Button3: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
end;

var
Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
var
p,p1: PChar;
begin
p1 := 'Delphi';
GetMem(p, 256);

lstrcpy(p, p1);
ShowMessage(p); {Delphi}

FreeMem(p);
end;

procedure TForm1.Button2Click(Sender: TObject);
var
p,p1,p2: PChar;
begin
p1 := 'Delphi';
p2 := '2009';
p := StrAlloc(256);

lstrcpy(p, p1);
lstrcpy(p, p2);
ShowMessage(p); {2009}

StrDispose(p);
end;

procedure TForm1.Button3Click(Sender: TObject);
var
p: PChar;
buf: array[0..255] of Char;
begin
p := '万一的 Delphi 博客';
lstrcpy(buf, p);
ShowMessage(buf); {万一的 Delphi 博客}
end;

end.

相关阅读 >>

Delphi 中的包开发

Delphi mac欺骗

学习使用Delphi for android 调用java类库

Delphi 在memo查找字符并定位

Delphi winsock downloader

Delphi实现保存和读取图片的方法

Delphi fmx使用 timage 显示动画图片

Delphi ttabcontrol

Delphi 软关闭显示器的代码

Delphi内存映射大文件

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...