Thread overview | |||||
---|---|---|---|---|---|
|
September 25, 2015 final class & final methods | ||||
---|---|---|---|---|
| ||||
If I declare a class as `final` do I have to mark all methods of the class as `final` too? |
September 25, 2015 Re: final class & final methods | ||||
---|---|---|---|---|
| ||||
Posted in reply to ref2401 | Am Fri, 25 Sep 2015 10:28:54 +0000 schrieb ref2401 <refactor24@gmail.com>: > If I declare a class as `final` do I have to mark all methods of the class as `final` too? No. -- Marco |
September 25, 2015 Re: final class & final methods | ||||
---|---|---|---|---|
| ||||
Posted in reply to ref2401 | On Friday, 25 September 2015 at 10:28:56 UTC, ref2401 wrote:
> If I declare a class as `final` do I have to mark all methods of the class as `final` too?
A final class can't be subclassed, so none of its methods can be overridden anyway.
|
Copyright © 1999-2021 by the D Language Foundation