Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
10/05/11 15:13
Read: times


 
#184067 - Information-hiding
Responding to: ???'s previous message
The code example is a good example of information hiding.

Because the language strings are hidden inside a function, you add code that looks at a locale setting to switch language without the caller needing to know.

And you can make use of this function from many places, while always knowing that there is a range check performed. Directly accessing the array means you are distributing the responsibility for such things into an unknown number of places.

Encapsulation really is one of the cornerstones when discussing software design. This is similar to C++ objects with "get" methods to retrieve actual attribute values, to be able to change the real implementation without the users needing to know and adapt.


List of 18 messages in thread
TopicAuthorDate
Another static question...            01/01/70 00:00      
   WIthout Static In This Case            01/01/70 00:00      
      Thank you            01/01/70 00:00      
      It is worse than that            01/01/70 00:00      
         could add 'const'            01/01/70 00:00      
         That's the key!            01/01/70 00:00      
         Thanks Neil            01/01/70 00:00      
      True - but not quite the point here            01/01/70 00:00      
   isn't it explained in the book itself?            01/01/70 00:00      
      Yes, it is            01/01/70 00:00      
      Yes, but...            01/01/70 00:00      
         If the pupil does not understand...            01/01/70 00:00      
            In this instance...            01/01/70 00:00      
               That is why the call it learning.            01/01/70 00:00      
   isn't this just another example of ....            01/01/70 00:00      
      Information-hiding            01/01/70 00:00      
         not arguing that part            01/01/70 00:00      
            Not just protection. Also better overview (and reuse)            01/01/70 00:00      

Back to Subject List