【问题标题】:Problem with sizeof... of parameter pack in enable_ifenable_if 中参数包的 sizeof... 问题
【发布时间】:2020-05-10 17:50:39
【问题描述】:

以下示例在所有主要编译器中均失败:clanggccvisual studio

我想知道有什么问题,好像很简单:

如果sizeof...(TYPES) == 2,那么它应该排除一个重载并接受另一个,如果0、1或大于2,那么它应该接受第一个重载 并排除第二个。

为什么不能这样工作?

#include <iostream>
#include <type_traits>

template <typename... TYPES>
struct Test {
    template <std::enable_if_t<(sizeof...(TYPES) != 2), int> = 0>
    Test() {
        std::cout << "A\n";
    }

    template <std::enable_if_t<(sizeof...(TYPES) == 2), int> = 0>
    Test() {
        std::cout << "B\n";
    }
};

int
main() {

    Test<int, int> t1;
    Test<int, int, int> t2;

    return 0;
}

clang 错误:

In file included from C:\Users\joaopires\Dropbox\++A\tests\par_pack.cpp:1:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iostream:11:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\istream:11:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ostream:11:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ios:11:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocnum:12:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath:505:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h:13:
C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common:54:40: error: no type named 'type' in 'std::enable_if<false, int>'; 'enable_if' cannot be used to disable this declaration
using enable_if_t = typename enable_if<_Test, _Ty>::type;
                                       ^~~~~
C:\Users\joaopires\Dropbox\++A\tests\par_pack.cpp:6:17: note: in instantiation of template type alias 'enable_if_t' requested here
        template <std::enable_if_t<(sizeof...(TYPES) != 2), int> = 0>
                       ^
C:\Users\joaopires\Dropbox\++A\tests\par_pack.cpp:20:17: note: in instantiation of template class 'Test<int, int>' requested here
        Test<int, int> t1;
                       ^
In file included from C:\Users\joaopires\Dropbox\++A\tests\par_pack.cpp:1:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\iostream:11:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\istream:11:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ostream:11:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\ios:11:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xlocnum:12:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\cmath:505:
In file included from C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtgmath.h:13:
C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.24.28314\include\xtr1common:54:40: error: no type named 'type' in 'std::enable_if<false, int>'; 'enable_if' cannot be used to disable this declaration
using enable_if_t = typename enable_if<_Test, _Ty>::type;
                                       ^~~~~
C:\Users\joaopires\Dropbox\++A\tests\par_pack.cpp:11:17: note: in instantiation of template type alias 'enable_if_t' requested here
        template <std::enable_if_t<(sizeof...(TYPES) == 2), int> = 0>
                       ^
C:\Users\joaopires\Dropbox\++A\tests\par_pack.cpp:21:22: note: in instantiation of template class 'Test<int, int, int>' requested here
        Test<int, int, int> t2;
                            ^
2 errors generated.
[Finished in 0.8s]

gcc 错误:

C:\Users\joaopires\Dropbox\++A\tests\par_pack.cpp: In instantiation of 'struct Test<int, int>':
C:\Users\joaopires\Dropbox\++A\tests\par_pack.cpp:20:17:   required from here
C:\Users\joaopires\Dropbox\++A\tests\par_pack.cpp:7:2: error: no type named 'type' in 'struct std::enable_if<false, int>'
  Test() {
  ^~~~
C:\Users\joaopires\Dropbox\++A\tests\par_pack.cpp: In instantiation of 'struct Test<int, int, int>':
C:\Users\joaopires\Dropbox\++A\tests\par_pack.cpp:21:22:   required from here
C:\Users\joaopires\Dropbox\++A\tests\par_pack.cpp:12:2: error: no type named 'type' in 'struct std::enable_if<false, int>'
  Test() {
  ^~~~
[Finished in 2.1s]

visual studio 错误:

1>C:\Users\joaopires\Dropbox\++A\A++\A++\main.cpp(160,1): error C2938: 'std::enable_if_t<false,int>' : Failed to specialize alias template
1>C:\Users\joaopires\Dropbox\++A\A++\A++\main.cpp(159): message : see reference to alias template instantiation 'std::enable_if_t<false,int>' being compiled
1>C:\Users\joaopires\Dropbox\++A\A++\A++\main.cpp(208): message : see reference to class template instantiation 'Test<int,int,int>' being compiled
1>Done building project "A++.vcxproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

【问题讨论】:

  • 你展示的代码有什么问题?当您说它“不 [...] 以这种方式工作”时,您是什么意思?你有构建错误吗?然后请将它们(作为文本)完整完整地复制粘贴到问题本身中。

标签: c++ variadic-templates sizeof enable-if parameter-pack


【解决方案1】:

这不起作用,因为您的模板成员函数 SFINAE 在类的模板参数上。 SFINAE 仅适用于直接上下文中的类型和表达式,这里表示属于构造函数模板签名的模板参数。

为了解决这个问题,我们可以在构造函数中引入一个新的模板参数,并给它一个依赖于类模板的默认值。

#include <iostream>
#include <type_traits>

template <typename... TYPES>
struct Test {
    template <std::size_t i = sizeof...(TYPES), std::enable_if_t<i != 2, int> = 0>
    Test() {
        std::cout << "A\n";
    }

    template <std::size_t i = sizeof...(TYPES), std::enable_if_t<i == 2, int> = 0>
    Test() {
        std::cout << "B\n";
    }
};

int
main() {

    Test<int, int> t1;
    Test<int, int, int> t2;

    return 0;
}

【讨论】:

  • 谢谢,C++ 确实充满了奇怪的角落。
【解决方案2】:

从 C++20 开始,您可以使用 requires 丢弃不需要的构造函数:

template <typename... TYPES>
struct Test {
    Test() requires(sizeof...(TYPES) != 2) { std::cout << "A\n"; }
    Test() requires(sizeof...(TYPES) == 2) { std::cout << "B\n"; }
};

即使在这种情况下,一个简单的if (constexpr) 也能胜任:

template <typename... TYPES>
struct Test {
    Test()
    {
        if constexpr (sizeof...(TYPES) != 2) {
            std::cout << "A\n";
        } else {
            std::cout << "B\n";
        }
    }
};

【讨论】:

  • 或者甚至一路下降到std::cout &lt;&lt; (sizeof...(TYPES) != 2 ? "A\n" : "B\n");
猜你喜欢
  • 2016-04-27
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2012-06-18
  • 1970-01-01
相关资源
最近更新 更多