1234
class Foo { static const int Bar = 5; };
123456789
class Foo { static const int bar; public: Foo(); Foo(int barIn); ~Foo(); }
12345
class Foo{ Foo(int barIn){ Bar = BarIn; } }
Foo::Foo(int barIn):Bar(barIn){}
class file : Foo::Foo(int BarIn) { bar = barIn; }
class Foo { const int bar; Foo(int barIn) : bar(barIn) // initializer list { } };