Q&A

  • X <> nil 과 Assigned(X) 의 차이점 ?? (냉무)
(냉무)
1  COMMENTS
  • Profile
    손희석 2003.11.14 17:58

    function Assigned(const P): Boolean;

    Description

    Use Assigned to determine whether the pointer or procedure referenced by P is nil. P must be a variable reference of a pointer or procedural type. Assigned(P) corresponds to the test P<> nil for a pointer variable, and @P <> nil for a procedural variable.

    위의 주석을 보면 차이가 있죠? 포인터나 프로시져의 nil 여부를 같이 체크할수 있답니다..

    그럼 즐푸하세요