override(T)
Andrei Alexandrescu
SeeWebsiteForEmail at erdani.org
Thu Sep 24 08:31:11 PDT 2009
Daniel Keep wrote:
>
> Andrei Alexandrescu wrote:
>> ...
>>
>> So I was thinking of this:
>>
>> class LotterySimulation : Lottery, Figure {
>> override(Lottery) void draw();
>> override(Figure) void draw();
>> }
>>
>> This is easy to implement, scales well, and has good real world uses.
>> What say you?
>>
>>
>> Andrei
>
> Why not go with what C# uses?
>
> class LotterySimulation : Lottery, Figure {
> override void Lottery.draw();
> override void Figure.draw();
> }
>
> Just seems like a more obvious and natural place for it to me. D
> already uses this to disambiguate symbols in other places.
Even better!
Andrei
More information about the Digitalmars-d
mailing list