gpt4 book ai didi

c++ - 空格很重要的另一种情况(也许?)

转载 作者:可可西里 更新时间:2023-11-01 15:45:43 28 4
gpt4 key购买 nike

这是另一种情况,在 C++ 中空格很重要,还是编译器错误?以下代码在语法上是否正确?

#include <type_traits>

template <bool cond>
using EnableIf = typename std::enable_if<cond, int>::type;

template <int n, EnableIf<n == 1>=0>
void func()
{}

英特尔 C++ Composer 无法编译它并提示:“类型说明符的无效组合”。但是在签名中添加一个空格,它编译得很好:

template <int n, EnableIf<n == 1> =0>
void func()
{}

最佳答案

在这种情况下,空格很重要。编译器将尽可能匹配最大的符号,因此匹配 >=。空格会导致它按照您的预期进行解析。

关于c++ - 空格很重要的另一种情况(也许?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13951426/

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