delphi – Assigned vs <> nil

前端之家收集整理的这篇文章主要介绍了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)完全相同,每次都工作!

原文链接:https://www.f2er.com/delphi/103525.html

猜你在找的Delphi相关文章