I've noticed eclipse JDT uses void as a primitive type. Can this be considered correct?
| |||
|
feedback
|
|
I find that, in cases like this, you can't beat going to the Java Language Specification. It is pretty clear about the fact that First off,
Furthermore, The reason that you saw what you did was explained nicely by Michael Borgwardt. So, to answer your title: no. In Java, | |||
feedback
|
|
No void is not a primitive type. It is simply a keyword to indicate a method has no return value. The closest you can come is the java.lang.Void class, which from the Javadocs is described as:
The presence in the JDT is merely to build the ASTs for the code. If you look at the field value description in the same docs it says:
| |||
|
feedback
|
|
From your link:
Note also that this is a class concerned with AST nodes, i.e. the syntax of the Java language. Basically, when modelling the language syntax, | |||
|
feedback
|
|
From Java 6 API docs:
I checked for myself:
Is it bug ? I know that void is not primitive type (I think it is just keyword), but why void.class.isPrimitive() returns true ? edit: I think it should be clarified, so I suggested java:doc bug 7019906. In my opinion it should be:
| ||||
feedback
|
|
as I know, void its not a primitive type. However they have this constant in the class Type for reflection reasons! | |||
|
feedback
|
|
here is what written in javadoc you referenced: Type code for the primitive type "void". Note that "void" is special in that its only legitimate uses are as a method return type and as a type literal. Pay attention on the bold word. I think this explains everything. | |||||||
feedback
|
voiddenotes a type at all? Or is it merely a syntactical placeholder? From the description of chapter 4 of the langspec, it certainly sounds likevoidisn't a type at all. – Johannes Schaub - litb Jan 13 '11 at 15:19voidis, pedantically speaking, not a type. – Johannes Schaub - litb Jan 13 '11 at 16:07