Can this method return true somehow?
public static <T> boolean isVoid(T t)
{
return t instanceof Void;
}
|
Can this method return
|
|||||||||||||||||
|
|
Yes, but I'm sure that isn't really useful:
Void class can't be instantiated so normally your code wouldn't require to deal with Void instances. The above code snippet is just an example of what havoc you can unleash when using reflection... ;-) |
|||||||||||||||||||||
|
|
I fail to see why you would check if a value is an instance of
which would output
There might other use cases for this method, but I don't see any other right now. |
|||
|
|
|
No. To make it return true you have to call it and pass argument of type Void. But constructor of class Void is private, so you cannot call it. Moreover this class is final, so you cannot even extend it. Thus you cannot create instance of class Void. But it is needed to make your method to return true. BTW: if you really want to do it call constructor of Void by reflection. But I can think about this as an the system abuse exercise. Good luck. |
|||
|
|
|
No:
|
|||
|
|