enum vs bool
Using an enumeration instead of a boolean is a practice where you use a simple two-member enum instead of a bool. For instance:
window->display(false); // False? False what?
window->display(WINDOWED); // Same as "fullscreen = false"
window->display(FULLSCREEN); // Same as "fullscreen = true"
if (!create_instance()) // "If not create instance?" Wha?
if (create_instance() == FAILED) // Much more explicit and clear.
// Also possibly a required check if an
// implicit cast to bool does not exist.
Granted it's a bit of a style thing, but the enhanced readability and, to some degree, type safety makes it worth considering.
array vs null
I'm guessing this is a language-specific case for a Null Object -- C# doesn't like foreach being called on null, but will work properly with an array with no elements (or so I'm told -- I'm a C++ guy myself).
It isn't always applicable, but often you can create an object that effectively behaves as a "null" object, avoiding the risk of the program blowing up if the user doesn't check for this case himself. For example:
/// Returns foo's name, normalizing it if it isn't already.
String* get_name() {
String* name = foo.get_name();
if (name == nullptr)
return &EMPTY_STRING;
name->normalize();
return name;
}
Can be replaced with:
String* get_name() {
String* string = foo.get_name();
string->normalize();
return string;
}
Admittedly not the best example, but hopefully it communicates the idea behind this.
iterator vs instance
I'm guessing this is saying: If you have a container and an element is requested, return an iterator to that position rather than just the single element. Presumably the iterator can be dereferenced easily enough if only that one element was desired, and if the position is needed as well, it's already right there. (Note that I personally don't agree with this one.)