Am 04.02.2012, 02:54 Uhr, schrieb Martin Nowak <[email protected]>:
If override were mandatory in implementation classes we could easily allow implementationsin interfaces.
Do you have a good example? Mine are currently all solvable with final methods in interfaces, like
interface ... {
...
@property size_t length();
@property final bool empty() { return length == 0; }
}
