gpt4 book ai didi

c++ - C++中的静态与成员函数是否存在开销

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:08:48 24 4
gpt4 key购买 nike

在 C++ 类中,使用静态函数而不是成员函数会产生任何开销。

class CExample
{
public:
int foo( int a, int b) {
return a + b ;
}
static int bar( int a, int b) {
return a + b ;
}
};

我的问题是;

  • 在这个例子中,foo() 或 bar() 哪个更有效?
  • 为什么我不想将 foo() 变成静态函数,因为它不会改变任何成员变量?

最佳答案

In this example is foo() or bar() more efficent?

没有。这两个调用都是静态解析的。将 this 指针传递给非 static 函数可能会有一些开销,但在这种情况下,两者都可能被内联。

Why would I not want to make foo() in to a static function as it does not alter any member variables?

你不会,让所有方法不绑定(bind)到实例 static 实际上是一个好习惯。

关于c++ - C++中的静态与成员函数是否存在开销,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11852153/

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