The impoliteness of overriding methods

Chris Nicholson-Sauls ibisbasenji at gmail.com
Thu Dec 20 01:42:01 PST 2012


How is this proposal significantly different from the currently 
working:

interface Base {
     final void chainMe () {
         if ( condition ) chainMe();
         else doChainMe();
     }

     protected void doChainMe();
}


-- Chris NS


More information about the Digitalmars-d mailing list