gpt4 book ai didi

c++ - 您可以在第二个声明中使用 `= delete` 模板函数吗?

转载 作者:IT老高 更新时间:2023-10-28 22:03:23 28 4
gpt4 key购买 nike

考虑以下代码:

template <typename T> int foo();
template <typename T> int foo() = delete;

这是有效的 C++11 吗?

  • GCC (9.1) 说:是的!
  • clang (8.0) 说:不!
  • nvcc (9.2) 说:不!
  • MSVC (19.20) 说:是的! (在C++14模式下,不支持C++11。)

...在 GodBolt 上查看所有内容.

那么哪些编译器是正确的,哪些编译器是 s@#$%e ? :-)

最佳答案

GCC 和 MSVC 有一个错误。

[dcl.fct.def.delete]

4 ... A deleted definition of a function shall be the first declaration of the function or, for an explicit specialization of a function template, the first declaration of that specialization...

我相信它也代表实例化的声明和定义。由于引用已删除的函数是硬错误,因此必须尽快将其声明为已删除。

关于c++ - 您可以在第二个声明中使用 `= delete` 模板函数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56409551/

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