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 여부를 같이 체크할수 있답니다..
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 여부를 같이 체크할수 있답니다..
그럼 즐푸하세요