20.2.1 Example

Perverse example:

// DONT WRITE CODE SUCH AS THIS!
double balance; // balance has global scope
class BankAccount
{
public:
   BankAccount(double balance);
      // Parameter variable balance has local scope
private:
   double balance; // Data field balance has class scope
};

prev |top |next