What I consider to be the most important part of C++ is its type system. To really take advantage of C++ (and move beyond C with // comments), you need to use smarter types.
Consider the "named constructor idiom". A common problem that this solves is usually formulated something like this:
class Point {
public:
Point(double x, double y);
private:
// some stuff
};
You initialize the class with two doubles for the x and y coordinates and everything is good. However, then you want to add support for polar notation.
class Point {
public:
Point(double x, double y);
Point(double r, double theta);
private:
// some stuff
};
Uh oh! You now have two constructors that are identical. The "named constructor idiom" solution would be to do something like this:
class Point {
public:
static Point from_cartesian(double x, double y);
static Point from_polar(double r, double theta);
private:
// some stuff, including constructors
};
and you would use it like this:
Point const point = Point::from_polar(1.0, 1.0);
However, I consider this to be applying the technical aspects of C++, but actually still thinking in "C with classes" style thinking. I believe that the correct solution is to make smarter use of the type system. A better solution with the fewest changes would be to do this:
class Point {
public:
Point(double x, double y);
Point(double r, Angle theta);
private:
// some stuff
};
What is the advantage of this? Making extensive use of the type system allows you to more easily compartmentalize different parts of the program, for one. It also allows the compiler to tell you when your program is wrong more often. The real strength of this approach comes when we define class Angle. Thinking about what types to use makes you more likely to realize a likely source of error -- You haven't specified any units anywhere! That may not be a big deal for x, y, and r (they may be some sort of unitless points on an abstract graph your program works on), but what about that theta?
class Angle {
public:
Angle(Degrees degrees);
Angle(Radians radians);
// We may want to define those constructors explicit, but maybe not
private:
// some stuff
};
Here is the fairly straightforward implementation of Degrees:
class Degrees {
public:
// The explicit is very important here!
explicit Degrees(double new_x):
x(new_x % 360) {
}
double value() const {
return x;
}
// If I frequently find myself calculating certain quantities, I can put
// their functions here. For instance, I could create functions like
// complement or supplement. If I find myself comparing angles, I may
// overload relational operators like operator==.
private:
double x;
};
Then anyone who wants to use Angle would do something like Angle const angle(Degrees(12.0)).
One potential improvement you could make to this would be to get rid of the function Degrees::value. Rather than allowing users to get at the underlying representation, they can only query it for traits. For instance, you might want bool is_right() const or maybe all you do with your angles is compare them to each other. However, this may not work in all situations; it depends on your design.
If you want to enforce a single type of angle measurement, you could just skip out on defining the Angle class and just use Degrees or Radians directly to save on some code and ensure there is a minimal amount of conversion. However, you still might need to define the other to translate data that comes from the outside and maybe uses other units. Assuming you only want Degrees, you may want to define a Degrees constructor that takes Radians as its argument, should that prove to be necessary.
Now going back to the original example of a Point, users must explicitly state what they want. This makes much better use of C++'s type system than the named-constructor idiom.
I'll give one more example, this one something that I've actually done.
In many games, players have levels. The C with classes approach, which views the class as merely a collection of data, would look something like this:
class Player {
public:
Player():
// All players begin at level 1
level(1)
{
}
int get_level() const {
return level;
}
void set_level(int new_level) {
level = new_level;
}
private:
int level;
// other data members
};
However, in most games, levels have certain restrictions on them ("invariants"). For instance, a player cannot be greater than level 100 or less than 1. Players levels never decrease. Rather than declaring level as an int, we can make the program's correctness determined at compile time as much as possible by making level its own class.
class Level {
public:
Level():
// All players begin at level 1
level(1)
{
}
explicit Level(int saved_level): // For loading from save files
level(saved_level) {
if (!is_in_valid_range(level))
throw InvalidLevel(level);
}
void increment() {
if (level < max)
++level;
}
// other functions that do something useful
private:
static int const min = 1;
static int const max = 100;
static bool is_in_valid_range(int level) {
return min <= level and level <= max);
}
int level;
};
By putting it in its own class, I've also found that I'm more likely to put in checks for correctness. I have an entire class that has a sole purpose of making the level correct, so I better get that simple thing correct myself. Rather than cluttering up the constructor of Player with checks for each individual part, each part checks itself for correctness, making the code more modular.
This should also make it easier for me to switch from a simple "what level am I" approach to a "How much experience do I have?" approach.
To me, good C++ is all about using the type system to make as many errors compile-time errors instead of run-time errors as possible. How this usually looks is making most classes either contain one or two fundamental types or entirely user-defined types. The containers of the fundamental types enforce the invariants of that portion of the program. Even if a particular data point doesn't have any invariants (yet), then having a class that simply stores the value is a way of stating that there are no invariants on this data. Future maintainers can spend less time wondering whether you forgot something.
For the same reasons, you want to avoid mandatory 'initialization' functions other than the constructor and, even worse, 'cleanup' functions other than the destructor.
All objects should always be in a valid state. If they cannot be in a valid state, do not create them yet. By making each component of a class enforce the invariants for that one portion of the class, you make your design immune to changes in the larger class. People modifying the larger class are looking at a larger picture than all of the invariants of every object, and they shouldn't have to think about whether each portion is individually still correct every time they modify it, only whether the interactions are still correct.
All objects should clean up after themselves. Requiring manual cleanup is asking for trouble.