Frage

Is there a way to add a method to a standard Java class, such as Object?

I know you can't subclass classes like String which are final, but Object isn't. I know I could just subclass Object and define a method in the subclass and make all my classes subclasses of that, but I'd rather not have to do that.

I suspect that this is either impossible or I've overlooked something. Thanks in advance for any answers.

War es hilfreich?

Lösung

You can't do this in Java. But other JVM languages are capable of doing so:

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top