delphi – Assigned vs <> nil

If Assigned(Foo)和If(Foo?nil)之间是否有区别?如果是,那么应该何时使用它们

解决方法

几乎是一样的事情。 The official documentation状态

Assigned(P) corresponds to the test
P<> nil for a pointer variable,and @P
<> nil for a procedural variable.

因此,如果P是普通指针,则P零和分配(P)完全相同。另一方面,如果P是一些程序,那么

var
  p: TNotifyEvent = nil;

procedure TForm1.FormCreate(Sender: TObject);
begin
  if Assigned(p) then
    p(Self);
end;

将会一直工作

procedure TForm1.FormCreate(Sender: TObject);
begin
  if @p <> nil then
    p(Self);
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
  if p <> nil then
    p(Self);
end;

甚至不会编译。因此,结论是P – nil和Assigned(P)完全相同,每次都工作!

相关文章

 从网上看到《Delphi API HOOK完全说明》这篇文章,基本上都...
  从网上看到《Delphi API HOOK完全说明》这篇文章,基本上...
ffmpeg 是一套强大的开源的多媒体库 一般都是用 c/c+&#x...
32位CPU所含有的寄存器有:4个数据寄存器(EAX、EBX、ECX和ED...
1 mov dst, src dst是目的操作数,src是源操作数,指令实现的...