C ++ programming ideology-inline functions

Source: Internet
Author: User

Macros should never be used. Only inline functions are used.

Any function defined in the class automatically becomes an inline function. You can also use the inline keyword to convert functions defined outside the class into inline functions.

Inline functions must combine functions and declarations; otherwise, the compiler treats them as common functions.
In general, inline functions should be placed in the header file. In the header file, the inline function is an internal connection by default, that is, static. It can only be seen in the included compilation unit.
As long as it is declared in different compilation units, using the same name between the restrained function and the global function will not cause conflicts during the connection.

If the function is too complex, the compiler cannot execute inline. Generally, loops of any type are considered too complexCan be extended to inline functions.

Inline is only a suggestion of the compiler, And the compiler does not force inline anyCode.

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.