The scope operator as a non-OO C++ extension

Nasza ocena:

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

Pobierz ten dokument za darmo

Podgląd dokumentu
The scope operator as a non-OO C++ extension - strona 1

Fragment notatki:

The scope operator as a non-OO C++ extension int fun(); int i; class C { int i; public: void test(); int fun(); }; void C::test() { i++; // C::i++ ::i++; // global i fun(); // C::fun() ::fun(); // global fun() } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz