Initialize in the initializer list instead of assigning in the constructor body.

❌ Instead of:

Foo::Foo() {
    bar = 42;
}

✅ Do this:

Foo::Foo() : bar(42) {}

Next - Previous