Go Up to Error and Warning Messages (Delphi)
You are attempting to reference a instance member from within a class procedure.
program Produce;
type
Base = class
Titleย : String;
class procedure Init;
end;
class procedure Base.Init;
begin
Self.Titleย := 'Does not work';
Titleย := 'Does not work';
end;
begin
end.
Class procedures do not have an instance pointer, so they cannot access any methods or instance data of the class.
program Solve;
type
Base = class
Titleย : String;
class procedure Init;
end;
class procedure Base.Init;
begin
end;
begin
end.
The only solution to this error is to not access any member data or methods from within a class method.