[C + +] Inline Function

Source: Internet
Author: User

The inline functions is a C + + enhancement feature to increase the execution time of a program. Compiler replace the definition at compile time instead of referring function defination at runtime.

Note-this is a suggestion to compiler to make the function inline. If function is big (under term of instruction etc), compiler can ignore the "inline" request and treat it as normal function.

To make a function as inline, start the defination with the keyword "inline"

 class a{ public  : inline  int  Add (int  A, int   b) { return  (a + b); }}; Class b{ public  :  int  Add (int  A, int   b);}; inline  int  b::add (int  A, int   b) { return  (a + b):}  

It is just a suggestion, not compulsion. Compiler may or may not be inline functions you marked as inline. It may also decide to-inline functions not marked as inline at compilation or linking time.

All the member functions declared and defined within class is inline by default. So no need to define explictly.

Reference:

What is C + + inline functions, cplusplus.com

[C + +] Inline Function

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.