Domanda

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.

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top