Structures and classes

Nasza ocena:

3
Wyświetleń: 490
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Structures and classes - strona 1

Fragment notatki:

Structures and classes  Initialization in braces { } is valid only for classes: - whose all fields are public - that have no explicit constructor struct s_xy { int x, y; }; s_xy sxy={10,20}; // ok //s_xy sxy1(10,10) - bad! struct xy { int x,y; xy(int x, int y) : x(x), y(y) {} }; //xy xy1={10,20}; — bad! xy xy1(10,10); //ok ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz