gpt4 book ai didi

c++ - 静态意味着内联或反之亦然或两者兼而有之?

转载 作者:搜寻专家 更新时间:2023-10-31 02:07:54 24 4
gpt4 key购买 nike

对于免费(不在类内)函数:

  • static 意味着 inline?
  • inline 意味着 static?

还是两者兼而有之?

考虑例子:

static void foo1() {  ... };

static inline void foo2 { ... };

inline void foo3() { ... };

有什么区别?

最佳答案

有差异,考虑(在header中):

static int foo1() { static int i = 0; return ++i; }
static inline int foo2() { static int i = 0; return ++i; }
inline int foo3() { static int i = 0; return ++i; }

并在 2 cpp 中“void caller[1-2]_foo[1-3]() { std::cout << foo[1-3]() << std::endl; }”。

所以

int main()
{
caller1_foo1(); // 1
caller2_foo1(); // 1

caller1_foo2(); // 1
caller2_foo2(); // 1

caller1_foo3(); // 1
caller2_foo3(); // 2
}

Demo

我找不到 static 之间的差异和 static inline虽然。

关于c++ - 静态意味着内联或反之亦然或两者兼而有之?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48203341/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com