18.12.12, 5:26, Ewald пишет:
Suppose TTestClass contains `AField: Integer; static;`, then the following would be right if I understand you correctly?Class Procedure TTestClass.AMethod; static; // I don't know if `static` should be in the implementation as well, but I'll soon figure out :-) Begin AField:= 0; //Wrong? My guess is it would fail to compile in this case, but I haven't got a compiler at hand now. TTestClass.AField:= 0; //Right? End;
Both calls will work. AMethod still belongs to class, so it first searches identifier in that class.
Best regards, Paul Ishenin _______________________________________________ fpc-pascal maillist - [email protected] http://lists.freepascal.org/mailman/listinfo/fpc-pascal
