gpt4 book ai didi

c++ - 为什么内置类型和类在不使用时会受到不同对待?

转载 作者:太空宇宙 更新时间:2023-11-04 13:11:21 25 4
gpt4 key购买 nike

为什么此代码会导致 2 个不同的警告?

class Abc
{
public:
Abc() = default;
Abc(Abc const&) = default;
};

int main()
{
int val1{int()};
Abc val2{Abc()};
}

编译输出:

main.cpp: In function 'int main()':
main.cpp:10:9: warning: unused variable 'val1' [-Wunused-variable]
int val1{int()};
^~~~
main.cpp:11:9: warning: variable 'val2' set but not used [-Wunused-but-set-variable]
Abc val2{Abc()};
^~~~

Live on coliru

最佳答案

警告是不言自明的。代码按预期编译和运行,但编译器建议您通过删除在程序中无用的变量(声明一个不会在程序中稍后出现的变量)来优化代码。

关于c++ - 为什么内置类型和类在不使用时会受到不同对待?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39723195/

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