ckd@cs.brown.edu (Carolyn K. Duby) (04/07/89)
In article <225@zeek.UUCP> you write: > >If the inline functions are defined in the class declaration (.h >file), then they get included wherever that .h file does. Fine. >But say you put them in the corresponding .c file with the "normal" >function definitions. Since you are compiling modules separately, >how does the compiler figure out how to do inline expansion of the >function body? In this case, do they _have_ to be treated as >regular functions (i.e., _inline_ ignored)? Basically you have the general idea. I consider C++ inline functions to be like C macros with better behavior. Basically at compile time the compiler places the body of the inline function at the calling point rather than a function call. In the case where you have multiple modules making up a program and you define an inline function in one module and call it from another module, the compiler generates a function call from the calling module. When the linker comes to the calling module it tries to link to an external function, but since the function is defined as inline, there is no function code generated. To avoid this whole problem, only use inlines for very short functions (i.e. one line) and put the declarations in the class definition in the .h file. >And if you put them >in the .h file, which is included in several modules, and the >compiler decides to treat them as regular functions, won't that >cause problems when linking (multiple redefinitions of the same >function)? This will not cause a problem because the class definition is a template, it is not actually a definition. You shouldn't get linking errors if you include the class definitions in multiple files. Good Luck!!!!! Carolyn Duby (ckd@cs.brown.edu) Brown University