英文:
Why can't this mutex be constexpr constructed?
问题
我遇到了错误信息:"初始化不是常量",在Microsoft Visual Studio Community 2022中,std::mutex是否具有constexpr构造函数?
英文:
#include <mutex>
int main()
{
constexpr static std::mutex my_mooootex;
}
I get the error of:
"Initialization is not constant"
On Microsoft Visual Studio Community 2022. std::mutex has a constexpr constructor, doesn't it?
答案1
得分: 1
这是微软编译器中的一个缺陷。
您的代码是有效的。显示报告代码错误的任何编译器都是错误的。
英文:
It's a flaw in Microsoft's compiler.
Your code is valid. Any compiler reporting an error with the code you show is doing so incorrectly.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论