X
xingyanwei
Unregistered / Unconfirmed
GUEST, unregistred user!
在C中,我在类定义中可以使用
static int a;
在Delphi中没有static,请教该怎么解决?
附加问题:
在Delphi中可以使用类函数,但是在实现中缺不能像正常的函数一样调用类成员。
例如:
type
TForm1 = class(TForm)
private
{ Private declarations }
count : integer;
public
{ Public declarations }
class function a : integer;
end;
//下面这样写就错误了,为什么?怎么解决?
class function TForm1.a: integer;
begin
result := count;
end;
static int a;
在Delphi中没有static,请教该怎么解决?
附加问题:
在Delphi中可以使用类函数,但是在实现中缺不能像正常的函数一样调用类成员。
例如:
type
TForm1 = class(TForm)
private
{ Private declarations }
count : integer;
public
{ Public declarations }
class function a : integer;
end;
//下面这样写就错误了,为什么?怎么解决?
class function TForm1.a: integer;
begin
result := count;
end;