Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question
6  
don't forget klass! – Peter Recore Mar 27 '10 at 16:38
2  
@Peter: good point, that's a klassic. – GregS Mar 27 '10 at 21:11
2  
...and what's wrong with Class class1 or Class myClass ? – Jason S Feb 4 '12 at 22:27

7 Answers

up vote 43 down vote accepted

clazz has been used in Java in place of the reserved word "class" since JDK 1.0. "class" is what you want, but abbreviating or inserting junk ("a", "the", "_", etc) reduces clarity. clazz just says class. "International" English speakers (those reading both English and American) are used to transposing 's' and 'z'.

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.

share|improve this answer

Because they cannot use the word they want to use which is 'class'. It is reserved.

share|improve this answer
11  
@Tony - how can you say "you know" and demand that the variable name be spelled right in the same comment? They are mutually exclusive. – duffymo Mar 27 '10 at 17:38
2  
@Tony, you simply can't name a variable "class", it's a reserved word. – Steve Kuo Mar 27 '10 at 17:57
1  
@duffymo : It's funny .I know class is reserved word , and I indeed demand the variable name be spelled right , why are they mutually exclusive ?? do you have to call it 'class' ? – Sawyer Mar 28 '10 at 4:09
1  
If "class" is the right spelling, then you can't use it. So they are mutually exclusive. Do you really not see it? Then you don't know. – duffymo Mar 28 '10 at 13:22
1  
I am guessing Tony wants the variable to be named something more descriptive than just "class". For example, "x" could be said to be spelled properly, but it does not mean as much as "numberOfComments" – Peter Recore Mar 28 '10 at 14:58
show 2 more comments

It's simply because 'class' is a reserved keyword, hence Class class isn't allowed. Therefore you'll see Class clazz or Class cls.

share|improve this answer
3  
I can't think of a reason to name a class Class since there are so many classes in any given project that calling a class THE class seems kind of pointless. I also can't think of a reason to call a VARIABLE class... – Blindy Mar 27 '10 at 16:25
4  
You did not name a class Class , it's java API. – Sawyer Mar 27 '10 at 16:28
1  
@Blindy: What about java.lang.Class? You don't have much choice there. – Dan Dyer Mar 27 '10 at 16:28
7  
@Blindy: There already is a class called Class, which refers to, well, an object's class. The perfect reason to have a variable called 'class' is when you're working with an object's class (ie: figuring out what type an object is) – Reverend Gonzo Mar 27 '10 at 16:29
Because sometimes you're writing code that has to manipulate actual classes. If the variable you're working with is, in fact, a class, but you can't call it "class", then you come up with something similar enough that your meaning is clear. – jwismar Mar 27 '10 at 16:30
show 7 more comments

Java does not have a feature that allows you to use a keyword as an identifier, unlike C# with its @ prefix (e.g. @class is a valid identifier.)

share|improve this answer
what about $class in java? – irreputable Mar 27 '10 at 20:50
That's a different identifier. class and $class are both valid (but different) identifiers in the JVM. There's no identifier you can write in a Java source file that translates to "class" in the VM. – finnw Mar 28 '10 at 1:11

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 class means in a different context. It is a hard and fast rule that class, regardless of its context, is used to denote the declaration of a class, and as such it is a reseverved word. That is as simple and as low-level as it gets.

If you feel compelled, you could write your own Java compiler to include a contextual rule that will allow you to use class as a variable name. Though I think it would be far better use of your time to just use clazz or klass -- it would probably be good for your health as well.

share|improve this answer

where does this originate from ?

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.

share|improve this answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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