سؤال

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.

هل كانت مفيدة؟

المحلول

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

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top