티스토리 뷰
System.SysUtils.FreeAndNil
Delphi
procedure FreeAndNil(var Obj);
C++
extern PACKAGE void __fastcall FreeAndNil(void *Obj);
Properties
Type |
Visibility |
Source |
Unit |
Parent |
procedure function |
public |
System.SysUtils.pas System.SysUtils.hpp |
Description
Frees an object reference and replaces the reference with nil (Delphi) or NULL (C++).
Use FreeAndNil to ensure that a variable is nil (Delphi) or NULL (C++) after you free the object it references.
Pass any variable that represents an object as the Obj parameter.
Warning: Obj must be an instance of a TObject descendant.
For C++, a reference to the object must be passed to FreeAndNil. For example:
TObject *obj = new TObject();
FreeAndNil(&obj);
객체 참조를 해제하고 참조를 nil (Delphi) 또는 NULL (C ++)로 바꿉니다.
FreeAndNil을 사용하여 참조하는 객체를 해제한 후에 변수가 nil (Delphi) 또는 NULL (C ++)인지 확인하십시오.
오브젝트를 나타내는 모든 변수를 Obj 매개변수로 전달하십시오.
경고: Obj는 TObject 자손의 인스턴스여야 합니다.
C ++의 경우 객체에 대한 참조를 FreeAndNil에 전달해야 합니다. 예:
Example
var Obj: TObject; begin Obj := TObject.Create(); FreeAndNil(Obj); end. |
descendant 미국·영국 [dɪ|sendənt] 1. 자손, 후손, 후예 |
출처: http://docwiki.embarcadero.com/Libraries/XE2/en/System.SysUtils.FreeAndNil
'프로그래밍 언어 > Delphi' 카테고리의 다른 글
[Reference] System.SysUtils.GetEnvironmentVariable (0) | 2017.05.07 |
---|---|
[Reference] System.SysUtils.GetModuleName (0) | 2017.05.05 |
[Reference] System.SysUtils.Sleep (0) | 2017.05.04 |
[Reference] System.SysUtils.StrLIComp (0) | 2017.05.03 |
[Reference] System.SysUtils.TextToFloat (0) | 2017.05.02 |
- Total
- Today
- Yesterday
- Reference
- 독해
- 상황
- 대상
- java
- 알고리즘
- 말하기
- VCL
- 영어
- 왕초보 영어회화 100일의 기적
- wfd
- Delphi
- 교육센터
- ADODB
- 작문
- 정렬
- RA
- 계산기
- 스택
- 일기
- 문법
- System
- 설명
- 자료구조
- 여행영어 100일의 기적
- tdataset
- SWT
- SysUtils
- Pte
- 응용
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |