Answer to Question #506 in C++ for Jazz

Question #506
Why should we use inline functions, why not to use macros #define?
1
Expert's answer
2010-07-27T10:35:55-0400
Inline functions do not have double calculation errors. For example if we have a macro #define absolute(i)((i)>=0 ? (I) : (-i)) and inline function inline int absolute_f(int i) (return i>=0 ? i:-i;), then when you call absolute(f ()) function f() will be called twice; that will not happen when you call inline function.

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS