I am working with a book on c++ and to solve the problems I am always asked to declare the member functions' prototypes in the xxxxxx.h file and define the functions body properly in the xxxxxx.cpp file. Is there any harm or disadvantage in defining the member functions in the .h file? If not, is there any benefit or advantage in defining them in the .cpp file?
|
|
If you will always write your code in So you will need to include everything you need in Also it's harder to read the code in |
|||||||||||||
|
|
If you define the method in the header, you have to mark it as
Other than that, it's a matter of coding style. You generally keep your headers clean, as to only provide an interface to work with the class, and abstract away the implementation details. Generally. There are cases where you have to define the functions in the header (templates) or when you want to (to allow better compiler optimizations). |
|||||||||||||||
|
