I've seen lots of codes have declaration like Class clazz , where does this originate from ? Is this some kind of convention ? I think 'clazz' is not even an English word , has no meaning at all , how can so many programmers name a wrong name coincidentally ?
|
|
||||
|
Since Java has had disclosed source and a suitable culture right from the start, worthwhile Java code and tutorials pick up the same conventions. That's one of the great things about the Java ecosystem, which I think has been an important part of its success. |
||||
|
|
|
Because they cannot use the word they want to use which is 'class'. It is reserved. |
|||||||||||||||||||||
|
|
It's simply because 'class' is a reserved keyword, hence |
|||||||||||||||||||
|
|
Java does not have a feature that allows you to use a keyword as an identifier, unlike C# with its |
|||||
|
|
It comes down to the actual compiler and its ability to distinguish what a token means within its context. However, in this particular case, it is the compiler's inability to distinguish what the token If you feel compelled, you could write your own Java compiler to include a contextual rule that will allow you to use |
|||
|
|
I saw it first at Josh Bloch's puzzlers. But I'm pretty sure it was used much earlier by other developers. Josh Bloch just made it more famous. |
|||
|
|
|
It is just a English word replaced(Equavalent) by Keyword Class Keyword, to make people understand that it is a Class. and it is almost to increase the readability of the Code Nothing big Logic involved in this |
|||
|
|
Class class1orClass myClass? – Jason S Feb 4 '12 at 22:27