Possible Duplicate:
Uses for the Java Void Reference Type?
What is the real usage of Void class in real world problems? In which scenario can we use this class?
What is the real usage of Void class in real world problems? In which scenario can we use this class? |
||||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
If you have an object (like an |
|||
|
|
|
- Unlike the other wrappers - The - But at the same point we cannot create an instance of the Void class using the new operator.This is because the constructor in Void has been declared as private. Moreover the Void class is a final class which means that there is no way we can inherit this class. - So the only purpose that remains for the existence of the |
|||||||||
|
|
|
|||
|
|
|
The java reflection API uses Void.TYPE to represent the return type of a method returning void as Luke Woodward points out. (Returning Void.class as I previously thought would cause an ambiguity with methods returning declaring a java.lang.Void return type).
Post java 1.5 Void can be used in generic classes to indicate that they do not return a value - the Implementation still has to return null, but it can be ignored since that is the only valid value for the type Void.
Also java allows to give a more specific return type when overwriting a method, this is basically the same as the generic example above, just to show that it works without generics if the original return type is Object. (it is limited to Object since Void follows the same rules as every other java type, sadly there is no way to use the nameless null-type for this)
|
|||||
|
|
It is used for reflection purpose when you are want to check return type of a method
Same is applicable with Generic methods.
|
||||
|
|
ReasonsThe DefinitionA method, as defined by the method return type section of the JLS (§8.4.5), needs has to formally declare at return type:
As mentioned in the JLS section for Class Literals (§15.8.2):
General UseIts usage became more prominent with the introduction of generics in Java 5, as it allowed the definition of these interfaces to use generics and would allow to type-check the use of these interfaces and callbacks. Before, it would sometimes have been up to the implementer to know there was no passed object or no return object, for instance in the case of a priviledged execution block using the
Note the difference with the Java 1.4 version of this same code, where it wasn't clear (and type-safe) to the caller that nothing is returned:
Further Reading and Similar Questions |
||||
|
|
|
Java is a case sensitive language, the term But talking about Void Class without context is absurd, instead use |
|||||||
|