What is an inline function?
I'll answer
Earn 20 gold coins for an accepted answer.20
Earn 20 gold coins for an accepted answer.
40more
40more
Works at the International Organization for Migration, Lives in Geneva, Switzerland.
The inline functions are a C++ enhancement feature to increase the execution time of a program. Functions can be instructed to compiler to make them inline so that compiler can replace those function definition wherever those are being called.
2023-05-15 12:30:25
评论(499)
Helpful(122)
Helpful
Helpful(2)

Aiden Taylor
QuesHub.com delivers expert answers and knowledge to you.
The inline functions are a C++ enhancement feature to increase the execution time of a program. Functions can be instructed to compiler to make them inline so that compiler can replace those function definition wherever those are being called.