正如问题所说……是否可以在不同的可见性水平上声明属性的读/写.如果是这样,语法是什么?
沿线的东西:
protected property MyProp : Integer write FMyProp; public property MyProp : Integer read FMyProp; end;
并不是说它是一个主要的语言功能,它很容易被替换
protected procedure SetMyProp(Value : Integer); public property MyProp : Integer read FMyProp; end;
如果存在这样的可能性,我只是好奇.