看看这个类:
TTest = class(TObject)
public
constructor Create(A:Integer);overload;
constructor Create(A,B:Integer);overload;
end;
现在,当我们要使用该类时:
var
test: TTest;
begin
test:= TTest.Create; //this constructor is still visible and usable!
end;
谁能帮我隐藏这个构造函数?