CPlusPlusThings/basic_content/inline/inline.h

19 lines
426 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
class A {
public:
void f1(int x);
/**
* @brief
* 类中定义了的函数是隐式内联函数,声明要想成为内联函数,必须在实现处(定义处)加inline关键字。
*
* @param x
* @param y
*/
void Foo(int x, int y) ///< 定义即隐式内联函数!
{
};
void f2(int x); ///< 声明后要想成为内联函数必须在定义处加inline关键字。
};