Is the last comma required in a C enum declaration?
i.e. is the comma after VAL3 required?
enum{Val1, Val2, Val3,} someEnum;
Are there any side-effects of leaving it in/out
Thanks
|
|
It's not required. Section
Notice the first two forms of One advantage I've seen to using it is in things like:
where, if you want to add in (for example) And, as pointed out in a comment, it can also be to simplify automated code generators so that they don't have to have special handling for the final value. They can just output every value followed by a comma. This can be likened to the oft-seen SQL:
In that case, the Some people may think this reeks of laziness and they're right, but that's not necessarily a bad thing :-) Any decent DBMS query optimiser should be able to strip out constant clause like that before going to the database tables. |
|||||
|
|
Like everyone else says, the comma is not required. But it's new in C99 (wasn't allowed in C89) and will be allowed in the next version of C++ too. One other rationale is to make a difference between a "length" enumerator and a normal enumerator:
Now, you can put into your coding guideline that the last item in your enumeration should have a comma applied, but not if it is a "Length" item - which just tells how many items there are. It also helps for automatic generation of items (using macros/preprocessors) like other answers explain. |
|||
|
|
In standard C89, the last comma is not permitted. Full stop. It was a common extension to allow it; in particular, it was supported by GCC, but the standard expressly disallowed it. In standard C99, the last comma is allowed, for symmetry with array and structure initializers, which always did allow the trailing comma on the last item.
The primary advantage of permitting trailing commas is that it permits easier machine generation of (C source) code - you do not have to write special case code for the last (or, maybe, the first) item in the list of initializers. Hence, programs like Yacc and Lex, to name but two, can be slightly simpler. |
||||
|
|
|
No it's not required. The reason being, it makes it easier for the purposes of cut and paste code, if you don't need to worry about whether the comma is meant to be there or not. |
|||
|
|
|
As already stated it is not required. The reason that a trailing comma is supported is that it (assuming the items are laid out one to a line) it allows you to conveniently rearrange the order of items in an enumeration using cut/paste or drag/drop, and it also allows you to comment out the last item without producing a syntax error. Omitting the trailing comma is legal but loses these code maintenance advantages. I'd forgotten but Nick is quite right. I too have exploited the trailing comma with compiler directives. Without it, the conditional code would have been a lot messier and harder to read. |
||||
|
|
|
It's optional and useful, if say you use macro, e.g.
|
|||
|
|
|
No, it's not required and should be omitted for code clarity. Its presence/absence has no effect. |
|||||||
|
|
Its not required, infact some compilers complain if you add one. for instance Visual Studio 6.
This pattern is useful if you there are several things you need to do with the elements and only want to define them once. For a more complete example of this you can look at the code of the libiconv and the iconv utility. |
|||||
|
|
Other answers mention it but I'd just like to highlight that the trailing comma is disallowed in standards-conforming C89 and C++, which makes it a portability issue with old or uncommon compilers. Here's a useful link that explains this and many other C/C++ issues: http://david.tribble.com/text/cdiffs.htm#C99-enum-decl |
|||
|
|