+ - 0:00:00
Notes for current slide
Notes for next slide

Mircea Baja

On coding style

1

On general writing style

"The Elements of Style" by William Strunk and E. B. White:

Form the possessive singular of nouns by adding 's.

"Clear and simple as the truth: writing classic prose" by Francis-Noël Thomas and Mark Turner:

A style is defined by it's conceptual stand on truth, presentation, writer, reader, thought, language, and their relationship
2

Sample problem

3
4

Data

{
"name": "Kipper",
"breed": "Labrador"
}
5

OOP style

class dog {
private:
std::shared_ptr<std::string> name_;
std::shared_ptr<std::string> breed_;
public:
std::shared_ptr<std::string> get_name() {
return name_;
}
void set_name(std::shared_ptr<std::string> value) {
name_ = value;
}
std::shared_ptr<std::string> get_breed() {
return breed_;
}
void set_breed(std::shared_ptr<std::string> value) {
breed_ = value;
}
void init(const Json & doc) {
name_ = doc.get_string("name");
breed_ = doc.get_string("breed");
}
};
6

Consequences

Image

7

Lambda style

void dog_from_json(
std::function<std::string(const char * key)> property,
std::function<const std::string & name, const std::string & breed> callback)
{
callback(property("name"), property("breed"));
}
[&doc]() {
std::string name;
std::string breed;
dog_from_json([&doc](const char * key) {
return doc.get_string(key);
}, [&] (const std::string & name_, const std::string & breed_) {
name = name_;
breed = breed_;
});
// use name and breed here ...
} ();
8

Classic style

struct dog
{
std::string name;
std::string breed;
};
dog dog_from_json(const Json & doc)
{
return { doc.get_string("name"), doc.get_string("breed") };
}
9

Consequences

Image

10

Performance style

void dog_from_json(char * json_buffer, char ** name, char ** breed)
{
// gets a non-const buffer of characters and will point name and breed
// to values in the buffer
}
11

On styles

There are a multitude of coding styles (but some are better than others)

They are defined by

  • attitudes to truth
  • representation
  • abstraction usage
  • generality
  • relation between the writer and reader.
12

Classic style

  • assumes there is one true, identifiable representation
  • that the right representation needs to be chosen (e.g. objects vs. functions)
  • uses abstractions as necessary
  • aims for a certain generality and elegance
  • simplicity hides the effort to achieve it
13

Superficial elements

Indentation and tab wars.

Notice the similarity between the first rule in "The Elements of Style":

Form the possessive singular of nouns by adding 's. [...] Exceptions are the possessive of ancient proper names ending in -es and is, [...]

and the first rule in the "Google C++ Style Guide":

In general, every .cc file should have an associated .h file. There are some common exceptions, such as unittests and small .cc files containing just a main() function.
14

References

Francis-Noël Thomas and Mark Turner:
Clear and simple as the truth: writing classic prose
2nd edition

William Strunk and E. B. White:
The Elements of Style

Labrador picture
https://pixabay.com/en/animal-dog-puppy-pet-photography-2184791/

Google C++ Style Guide
https://google.github.io/styleguide/cppguide.html

15

On general writing style

"The Elements of Style" by William Strunk and E. B. White:

Form the possessive singular of nouns by adding 's.

"Clear and simple as the truth: writing classic prose" by Francis-Noël Thomas and Mark Turner:

A style is defined by it's conceptual stand on truth, presentation, writer, reader, thought, language, and their relationship
2
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow