Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
compare webbrowser
Freenet DSL
Who's Online
7 user(s) are online (7 user(s) are browsing encyclopedia)

Members: 0
Guests: 7

more...
browser tip
Unix Befehle
manual of unix befehle
recommendation!
Sponsored
partner

Class implementation file

In object-oriented programming, a class implementation file is often used to contain the implementation code for the method (computer science) of a class (computer science). Using this structure, a class definition file containing the declaration of the class and its members is also created. If the class definition has been included and the implementation file for its methods is available, the user can instantiation an object (computer science) of the class. The purpose of this structure is to keep the implementation code hidden, but allow the user to view the design. This allows the user the information needed to use the class effectively, but prevent him or her from damaging the compiled code.

= External links =

  • [http://www.complex-ite.net/tutorials/cc/chap05.htm Complex-ite.net C++ Tutorial (THE CLASS IMPLEMENTATION FILE)]