vote up 0 vote down star
1

Is it possible to make a method that will take anything, including objects, Integers etc? I have a method checking the value if it is null and I was thinking perhaps it could be done with generics instead of overloading. Unfortunately, trying

nullChecking(Class<? extends Object> value){
...
}

won't allow Integers as they extend Number not object. Is there a way?

Cheers

flag
(Note: Integer extends Number; Number extends Object; extends is essentially transitive.) – Tom Hawtin - tackline May 12 at 10:21
Actually, this won't accept Integers as they don't extend Class... – Bill Michell May 12 at 10:40

5 Answers

vote up 5 vote down check

Can't you just do nullChecking(Object value) ? If you just wanna test if it's null, it will work.

link|flag
1  
slaps forehead I just listened to a bunch of stuff about generics today so I think I was defaulting to that thinking. Thanks :) Cheers – dc89 May 12 at 10:13
etc. wouldn't work. I mean int, char, long :) – Adeel Ansari May 12 at 10:18
Yeah it wouldn't work on int, char, long,etc. but these cannot be null, so there is no real problem. – Valentin Rocher May 12 at 10:51
@Vinegar @Bishiboosh: it would work. They'd be autoboxed into Integer, Char, ... and thus always return false ... – Joachim Sauer May 12 at 20:38
Yes but anyway testing them would be useless, since they can't be null. – Valentin Rocher Feb 23 at 16:54
vote up 1 vote down

I'm not sure what you are trying to do... If it's just checking if a object is null then you can simply do this:

public static boolean nullChecking(Object obj) {
	return obj == null;
}
link|flag
Yep I am doing something like this, it is simply to throw an error if it is null so it won't return anything and object fits the bill in this case. Cheers – dc89 May 12 at 10:50
1  
I'd call it ensureNonNull(). – starblue May 12 at 13:47
@starblue: I'd expect "ensureNonBlue()" to do something like "if (obj == null) throw new NullPointerException()" or something to the same effect. I wouldn't expect it to simply return some value ... – Joachim Sauer May 12 at 20:39
vote up 0 vote down

A simple, but not very nice solution would be to just call the getClass() method of the object - no need for any additional code (if you just want to throw an Exception).
Advantage: simple, fast and the Exception is not thrown one step away from where you want to check
Disadvantage: harder to understand, just works for throwing a NullPointerException (no logging)

Example:

someObj.getClass();     // check for null
otherObj.getClass();    // "
link|flag
not meant to be very serious :--) – Carlos Heuberger May 12 at 12:21
vote up 0 vote down

Actually there is a way to do this, but I wouldn't recommend it for your usage...

So, here is how to do this (and warning, it circumvents compile time type checking, so you open yourself up to run-time class-cast exceptions...)

Say you have a "getter" than can return multiple types - it can be declared as a generic type like so:

public <X> X get(String propertyName) { ... }

You can do the same for a 'setter':

public <X> void set(String property, X value) { ... }
link|flag
vote up 0 vote down

A

public <T> boolean isNull(T obj) { return obj == null; }

would work... but... what for?

Do you think that

if (isNull(myObj)) { ... }

is easier to write than

if (myObj == null) { .... }

?

Consider you will doing a method invocation in the first case and that consumes [almost nothing, but it does] system resources with no logical advantage, to me.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.