Strings in enums?
Moderator: Coders of Rage
- JaxDragon
- Chaos Rift Junior
- Posts: 395
- Joined: Mon Aug 04, 2008 2:03 pm
- Current Project: Kanoba Engine
- Favorite Gaming Platforms: PS3, PC
- Programming Language of Choice: C++
- Location: Northeast NC
Strings in enums?
I was reading my C++ book, when I stumbled across enums. I understand them enough, although I cant figure out how to use a string as one of its values. Any help?
- Falco Girgis
- Elysian Shadows Team
- Posts: 10294
- Joined: Thu May 20, 2004 2:04 pm
- Current Project: Elysian Shadows
- Favorite Gaming Platforms: Dreamcast, SNES, NES
- Programming Language of Choice: C/++
- Location: Studio Vorbis, AL
- Contact:
Re: Strings in enums?
Well, think about what they are.
eNUMERATED types. Meaning what? Numbers. You can't do that. XD
eNUMERATED types. Meaning what? Numbers. You can't do that. XD
- MarauderIIC
- Respected Programmer
- Posts: 3406
- Joined: Sat Jul 10, 2004 3:05 pm
- Location: Maryland, USA
Re: Strings in enums?
...in C++. In some other languages you can. Dunno why it can't be done in C++ if you overload the == operator to use strcmp, or something, besides the fact that the language doesn't support it.
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
- trufun202
- Game Developer
- Posts: 1105
- Joined: Sun Sep 21, 2008 12:27 am
- Location: Dallas, TX
- Contact:
Re: Strings in enums?
Yeah, worst case you could always create a lookup. Take the value of the enum and use it as an index in the array of corresponding strings.
- JaxDragon
- Chaos Rift Junior
- Posts: 395
- Joined: Mon Aug 04, 2008 2:03 pm
- Current Project: Kanoba Engine
- Favorite Gaming Platforms: PS3, PC
- Programming Language of Choice: C++
- Location: Northeast NC
Re: Strings in enums?
Lol...guess my book doesn't tell me that much. It requires a GyroVorbis(sold seperately). And i'll try trufun202's theory when I get to arrays.GyroVorbis wrote:Well, think about what they are.
eNUMERATED types. Meaning what? Numbers. You can't do that. XD
If you're wondering "What crap book teaches about classes and enums before arrays?" Well, that book is C++ for dummies, All-in-one.
- programmerinprogress
- Chaos Rift Devotee
- Posts: 632
- Joined: Wed Oct 29, 2008 7:31 am
- Current Project: some crazy stuff, i'll tell soon :-)
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++!
- Location: The UK
- Contact:
Re: Strings in enums?
I believe most books do, it's imperative that you know about constants and their uses before you move onto arrays, mainly because you tend to initialise static arrays using constants, and loops (mainly the for loop) usually rely on you to specify a maximum/minimum value, and constants help A LOT.JaxDragon wrote: If you're wondering "What crap book teaches about classes and enums before arrays?" Well, that book is C++ for dummies, All-in-one.
I'm surprised they actually covered strings before all of that, most books usually wait till further on to introduce that stuff, because the old style C-string is a pointer to a char and the newer C++ style string is an object of the string class, so those two topics(pointers and classes) are usually way further on in the books considering you need to know how to just program before you start messing around with memory or dip your feet into OOP...
Apologies, I went on a bit, I hope it all goes well

---------------------------------------------------------------------------------------
I think I can program pretty well, it's my compiler that needs convincing!
---------------------------------------------------------------------------------------
And now a joke to lighten to mood :D
I wander what programming language anakin skywalker used to program C3-PO's AI back on tatooine? my guess is Jawa :P
I think I can program pretty well, it's my compiler that needs convincing!
---------------------------------------------------------------------------------------
And now a joke to lighten to mood :D
I wander what programming language anakin skywalker used to program C3-PO's AI back on tatooine? my guess is Jawa :P
- Falco Girgis
- Elysian Shadows Team
- Posts: 10294
- Joined: Thu May 20, 2004 2:04 pm
- Current Project: Elysian Shadows
- Favorite Gaming Platforms: Dreamcast, SNES, NES
- Programming Language of Choice: C/++
- Location: Studio Vorbis, AL
- Contact:
Re: Strings in enums?
Coming from a C background, I do find that pretty weird.
Structs are like towards the end of the book.
Structs are like towards the end of the book.

Re: Strings in enums?
http://elysianshadows.com/phpBB3/viewto ... art=999999
i dont know if you would call that using strings as enums, but its definitely lexical.
i dont know if you would call that using strings as enums, but its definitely lexical.
Some person, "I have a black belt in karate"
Dad, "Yea well I have a fan belt in street fighting"
Dad, "Yea well I have a fan belt in street fighting"
- MarauderIIC
- Respected Programmer
- Posts: 3406
- Joined: Sat Jul 10, 2004 3:05 pm
- Location: Maryland, USA
Re: Strings in enums?
With enumerators, you can do this :)
Code: Select all
enum myEnumerator {
SOMETHING_1,
SOMETHING_2,
NUM_SOMETHINGS
};
int array[NUM_SOMETHINGS];
for (int i = 0; i < NUM_SOMETHINGS; ++i) {
}
for (int i = SOMETHING_1; i < NUM_SOMETHINGS; ++i) {
}
cout << array[SOMETHING_1] << array[SOMETHING_2] << endl;
/*
But you cannot do cout << array[NUM_SOMETHINGS]
*/
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
- JaxDragon
- Chaos Rift Junior
- Posts: 395
- Joined: Mon Aug 04, 2008 2:03 pm
- Current Project: Kanoba Engine
- Favorite Gaming Platforms: PS3, PC
- Programming Language of Choice: C++
- Location: Northeast NC
Re: Strings in enums?
Ah thanks for the brief tutorial on enum arrays.
- MarauderIIC
- Respected Programmer
- Posts: 3406
- Joined: Sat Jul 10, 2004 3:05 pm
- Location: Maryland, USA
Re: Strings in enums?
Well, enum arrays implies an array of enums. Rather you just use the enum to iterate through the array and declare the size of it, which is what my post exemplifies.
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
- Innerscope
- Chaos Rift Junior
- Posts: 200
- Joined: Mon May 04, 2009 5:15 pm
- Current Project: Gridbug
- Favorite Gaming Platforms: NES, SNES
- Programming Language of Choice: Obj-C, C++
- Location: Emeryville, CA
- Contact:
Re: Strings in enums?
I haven't used iostream.h in a while... but is this true? Can you not "cout" the last element of an array?/*
But you cannot do cout << array[NUM_SOMETHINGS]
*/
If not, then do you mean:
Right?/*
But you cannot do cout << array[myEnumerator]
*/
Current Project: Gridbug
Website (under construction) : http://www.timcool.me
Website (under construction) : http://www.timcool.me
- programmerinprogress
- Chaos Rift Devotee
- Posts: 632
- Joined: Wed Oct 29, 2008 7:31 am
- Current Project: some crazy stuff, i'll tell soon :-)
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++!
- Location: The UK
- Contact:
Re: Strings in enums?
look carefully, you can NEVER access the maximum value in an array (in the context you're referring to), but the compiler won't stop you because C++ deliberately has no bounds checking.
values you can access in an array go from 0 to (n-1) you access the nth element in an array with (n-1), trying to access an element with the index n would make you access the element after the last one, if that makes any sense.
const int MAX = 5 for example could be used in a for loop to iterate through elements 0 to (MAX-1), but you would never access element MAX, because you are infact accessing the (MAXth +1) element, which of course, doesn't exist
values you can access in an array go from 0 to (n-1) you access the nth element in an array with (n-1), trying to access an element with the index n would make you access the element after the last one, if that makes any sense.
const int MAX = 5 for example could be used in a for loop to iterate through elements 0 to (MAX-1), but you would never access element MAX, because you are infact accessing the (MAXth +1) element, which of course, doesn't exist

---------------------------------------------------------------------------------------
I think I can program pretty well, it's my compiler that needs convincing!
---------------------------------------------------------------------------------------
And now a joke to lighten to mood :D
I wander what programming language anakin skywalker used to program C3-PO's AI back on tatooine? my guess is Jawa :P
I think I can program pretty well, it's my compiler that needs convincing!
---------------------------------------------------------------------------------------
And now a joke to lighten to mood :D
I wander what programming language anakin skywalker used to program C3-PO's AI back on tatooine? my guess is Jawa :P
- Innerscope
- Chaos Rift Junior
- Posts: 200
- Joined: Mon May 04, 2009 5:15 pm
- Current Project: Gridbug
- Favorite Gaming Platforms: NES, SNES
- Programming Language of Choice: Obj-C, C++
- Location: Emeryville, CA
- Contact:
Re: Strings in enums?
Oh yea, I forgot that's how c++ handles arrays.programmerinprogress wrote:look carefully, you can NEVER access the maximum value in an array (in the context you're referring to), but the compiler won't stop you because C++ deliberately has no bounds checking.
Another thing is that in Marauder's example he hasn't assigned any values to any of the elements. Is the default value, the smallest integer like -214*10^6? (i could be confusing languages again)
Current Project: Gridbug
Website (under construction) : http://www.timcool.me
Website (under construction) : http://www.timcool.me
- MarauderIIC
- Respected Programmer
- Posts: 3406
- Joined: Sat Jul 10, 2004 3:05 pm
- Location: Maryland, USA
Re: Strings in enums?
In C/C++, default values are garbage, IIRC. Behavior undefined, etc.
But you could assign that way, too. I was trying to show how you could access array members using enumerators and make your code all friendly, and if you didn't need friendly (loop), you could loop using one, as well.
But you could assign that way, too. I was trying to show how you could access array members using enumerators and make your code all friendly, and if you didn't need friendly (loop), you could loop using one, as well.
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.