Delphi-如何声明一个类

type
  TMyClass = class
  public
    //公开成员   
    constructor Create;
    destructor Destroy;
  private
    //私有成员             
end;
         

猜你喜欢

转载自www.cnblogs.com/YiShen/p/9688022.html