• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[C++] Inline Functions Tutorial
#2
Although I already learned about basic functions in c++ the inline function. Inline functions are not always important, but it is nice to understand them. The basic idea is to save time at a cost in space. Inline functions are a lot like a placeholder. One time you define an inline function, using the 'inline' keyword, everytime you call that function the compiler will replace the function call with the actual code from the function.
  Reply


Messages In This Thread
[C++] Inline Functions Tutorial - by Clones - 11-11-2011, 04:25 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Drumms Useful Functions! Drumm 4 10,621 08-10-2011, 10:36 PM
Last Post: Mark
  Two functions for the ELU Rating system Drumm 8 21,696 02-03-2011, 09:57 AM
Last Post: Drumm

Forum Jump: