gpt4 book ai didi

c++ - 使用 this->,::and ordering members 会提高编译速度吗?

转载 作者:行者123 更新时间:2023-11-28 08:13:47 25 4
gpt4 key购买 nike

<分区>

我很好奇这些是否会影响编译速度:

int y;
struct foo {
void bar() {
x = y;
}
int x;
};

大概更快的版本:

int y;
struct foo {
int x;
void bar() {
this->x = ::y;
}
};

第二个编译速度更快吗?如果是,增加多少?

(如果重要我使用 GCC)

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