C++

profileh2o
webcounter_notes.txt

Abstraction - describing something in terms of how you use it. What is the Web counter abstraction? Describe in terms of how you use it. Encapsulation - 1. Bundling together data with the operations that manipulate the data. 2. Those using the "thingy" may only use "thingy" through the operations. Nobody using thingy can access thingy's data directly. int number_of_visits [create] set the value of the web counter "hit" the Web counter and have it increase the number of visits by one reset the Web counter to zero get the current value of the Web counter.