[One to three C] inline function in C Language

Source: Internet
Author: User

Daily C language inline FunctionEvery day, I picked up a C-language shell, which grew up and formed thousands of miles.
Today's shells: the original intention and usage of inline functions in C Language
Purpose: introduce inline functions to reduce the overhead of function calls.Usage:Add the qualifier inline before the function return value: for exampleInlineintfunction (int n );The compiler generates a copy of the function code at an appropriate position in the source file to avoid function calls. From the function perspective, although macros can reduce the overhead of function calling, macros have inherent defects that cannot be avoided.Advantage: inline functions expand like macros, And the execution speed is very fast.Limitations:1. Suggestion: defining inline functions is actually a "suggestion" for the compiler, which may be rejected by the compiler.2. Small functions: If the inline function has a large amount of code, the compiler is almost impossible to adopt the inline "suggestion ".3. Restrictions: inline functions cannot contain statements such as loops.
Have a nice day!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.