+ 2
is inline function can execute faster than a normal function.
3 ответов
0
Pls what's inline function
0
yes. Inline functions execute faster then a normal one.
DecodesWorm an inline function means that the compiler replaces all the calls of the function with the code inside the function while it compiles. Is declared as
inline return_type func_name(all_parameters) {
code;
}
It is faster once it is compiled because the compiler does not need to reference the function during run time.
Hope this helps. :)
0
yes