Why is this enum not valid ?
enum Type{
MPEG-2=2,PASSED_PIDS_ID=3,DVB=4,ATSC=5,NA=6,UNDETERMINED=7
}
|
Why is this enum not valid ?
|
||||
|
|
|
You have a couple of syntax errors, one in the first identifier (the
|
|||
|
|
You can't have a |
|||
|
|
|
Remove the The Enum has a method called Should you wish to include some more data, then you can have a constructor, which you could use as example:
So for your example, it may be best to have no extra information, or create a constructor as above and pass a number in that way. |
|||||||||||||
|
|
It's invalid because "-" is not valid character in an identifier. Using MPEG_2 instead of MPEG-2 will fix it. |
|||
|
|