# Story About Inline ## About Author: ![](../img/wechat.jpg) ## 1.Inline in Class Declaration method in header file ```c++ class A { public: void f1(int x); /** * @brief The function defined in the class is an implicit inline function. If you want to be an inline function, you must add the inline keyword at the implementation (definition) * * @param x * @param y */ void Foo(int x,int y) ///< The definition is implicit inline function { }; void f1(int x); ///< To be an inline function after declaration, you must add the inline keyword to the definition }; ``` The inline function is defined in the implementation file: ```c++ #include #include "inline.h" using namespace std; /** * @brief To work, inline should be placed with function definition. Inline is a kind of "keyword for implementation, not for declaration" * * @param x * @param y * * @return */ int Foo(int x,int y); // Function declaration inline int Foo(int x,int y) // Function definition { return x+y; } // It is recommended to add the keyword "inline" to the definition! inline void A::f1(int x){ } int main() { cout< using namespace std; class Base { public: inline virtual void who() { cout << "I am Base\n"; } virtual ~Base() {} }; class Derived : public Base { public: inline void who() // { cout << "I am Derived\n"; } }; int main() { // Base b; b.who(); // Base *ptr = new Derived(); ptr->who(); // delete ptr; ptr = nullptr; return 0; } ```