Get up to 80 % extra points for free! More info:

Lesson 10 - Enumeration types

In the last lesson, Binary operations, we talked about binary operations.

We've already mentioned the bit flags, to which we apply binary operations. It would be impractical to remember individual numbers (or even in binary form). It'd be easier to name individual values and work only with symbolic names. This is the task of enumeration types.

Enumeration type

Examples of enumeration types can be months or days of the week. One of the most basic solutions would be to define an integer and say that the value 0 will represent January, the value 1 February, etc. This solution will work and can be used in the program, but we (lazy programmers) must remember which month has which number. In addition, this approach prevents the IDE from intelligently suggesting and verifying that we actually wrote what we wanted to write.

This created a requirement to remember names instead of values. You will definitely think of several ways, such as defining a few constants. A global structure with predefined values could serve just as well. C++ solves this requirement even better -


 

...End of the preview...
Continue further

You will gain knowledge worth hundreds of thousands for a few crowns

You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.

Buy this course

Buy all currently available lessons with exercise submitting and other features for just $12.60
Current account balance $0
By buying this package, you'll have access to all 17 articles (17 lessons) in this course.

This article is licensed: Premium, by buying this article, you agree with the terms of use.

What will you get from us in the next lessons?
  • Unlimited and permanent access to individual lessons.
  • High quality IT knowledge.
  • Skills to help you get your dream and well-paid job.

Article description

Requested article covers this content:

This time we will look at enumeration types that we can use to logically group and name a set of related values.

You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.

Article has been written for you by Richard Bleier
Avatar
Activities