Problems with References

Nasza ocena:

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

Pobierz ten dokument za darmo

Podgląd dokumentu
Problems with References - strona 1 Problems with References - strona 2

Fragment notatki:

Problems with References  Problems: - when the actual parameter type is not the same as formal - … or is an expression: char c=1, int a=2, int b=3; swap(a, c); swap(a+1, b);  arguments are converted to const (const int), compiler expects int (not const)  it should exit with error, usually issues only a warning // int &r1=8; // ERROR! 8 is constant const int &r2=7, // OK &r3=a+b; // OK /* r2 and r3 - references to constant temporary objects */ ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz