Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
programming_languages:cpp:constructor [2017/02/19 14:46] – ↷ Seite von programmiersprachen:cpp:constructor nach programming_languages:cpp:constructor verschoben phreazer | programming_languages:cpp:constructor [2020/05/29 16:40] (current) – phreazer | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Basic constructor ====== | ====== Basic constructor ====== | ||
+ | < | ||
class Example | class Example | ||
{ | { | ||
Line 16: | Line 17: | ||
cout << " | cout << " | ||
} | } | ||
+ | </ | ||
====== Initialization lists to initialize members ====== | ====== Initialization lists to initialize members ====== | ||
+ | < | ||
Example:: | Example:: | ||
{ | { | ||
cout << " | cout << " | ||
} | } | ||
+ | </ | ||
====== Create objects ====== | ====== Create objects ====== | ||
+ | < | ||
int x(5); // (int x = 5) | int x(5); // (int x = 5) | ||
Fraction fiveThirds(5, | Fraction fiveThirds(5, | ||
+ | </ |