ID EN
Typing

final

Python 3.11 🇮🇩 Bahasa Indonesia

Dekorator untuk menunjukkan metode akhir dan kelas akhir.

Syntax

PYTHON
@typing.final

Contoh

Example 1
PYTHON
class Base:
    @final
    def done(self) -> None:
        ...
class Sub(Base):
    def done(self) -> None:   Error reported by type checker
        ...

@final
class Leaf:
    ...
class Other(Leaf):   Error reported by type checker
    ...