This code is derived from a Delphi/Lazarus) tutorial. It appears that InstanceSize causes an error in PascalABC.Net - "The type ‘Human’ does not contain a definition for ‘InstanceSize’ "… Is there an equivalent function in PascalABC.Net?
Этот код взят из учебника по Delphi/Lazarus). Похоже, что InstanceSize вызывает ошибку в PascalABC.Net - "Тип ‘Human’ не содержит определения для ‘InstanceSize’ "… Есть ли эквивалентная функция в PascalABC.Net?
Gary
program ObjectTest;
//uses StrUtils;
Type
Human = class
private
Name : string;
public
end;
var
Person : Human;
begin
Person := Human.Create;
Write('Input a name: ');
Readln(Person.Name);
Writeln(Person.Name);
Writeln('Instance size: ', Person.InstanceSize);
Readln
end.