Delphi [추가된 문법 정리] - 클래스 필드(Class Field):델파이 2007 추가
2016.06.03 17:09
클래스 필드(Class Field)
클래스 필드는 ( 정상적인 "인스턴스 필드"달리) 개체를 참조하지 않고 액세스 할 수 있는 클래스의 데이터 필드이다.
클래스 필드에 저장된 데이터는 클래스 또는 클래스의 인스턴스 변수를 참조하여 액세스 할 수 있습니다.
type TMyClass = class public class var // Introduce a block of class static fields. Red: Integer; Green: Integer; Blue: Integer; var // Ends the class var block. InstanceField: Integer; end; |
클래스 필드 Red, Green, Blue에 다음과 같이 액세스 할 수 있습니다 :
TMyClass.Red := 1; TMyClass.Green := 2; TMyClass.Blue := 3; |
또한 클래스의 인스턴스를 통해 액세스 될 수있다.
var myObject: TMyClass; myObject := TMYClass.create; |