Is null also an object?

Asked 2 years ago, Updated 2 years ago, 21 views

Does Java also treat null as an object?

java

2022-09-21 18:05

1 Answers

If null is an object, you'll have to support something like equals, which is the method of java.lang.Object. However, null does not support such methods and will send a nullPointerException error.


2022-09-21 18:05

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.