Answers for "why inline function is used in cpp class"

C++
0

inline function in c++

#include <iostream>
using namespace std;


//this function is the fastest bacause it executes at compile time and is really fast , 
//but dont use it for like a big function  
inline int cube(int s)
{
    return s*s*s;
}
int main()
{
    cout << "The cube of 3 is: " << cube(3) << "n";
    return 0;
} //Output: The cube of 3 is: 27
Posted by: Guest on January-20-2022
0

inline in class in C++

Inline Member Functions (C++)
A member function that is both declared and defined in the class member list is called an inline member function. Member functions containing a few lines of code are usually declared inline.
Posted by: Guest on November-01-2020

Browse Popular Code Answers by Language