prev next prev next
  Course navigation
  Lesson 4 The scope resolution operator and Binary form
 
Objective
Binary form of the scope resolution operator.
The scope resolution operator's binary form is used to clarify names that are reused within classes.
VMWare, sap, data mining

strategic planning, thin client, firefox-a
 
class widgets { public: void f(); };
class gizmos  { public: void f(); };

void f() { ..... }          //ordinary external f
void widgets::f() { ..... } //f scoped to widgets
void gizmos::f() { ..... }  //f scoped to gizmos
  Course navigation