is_placeholder 类

测试类型是否为占位符。

语法

struct is_placeholder {
   static const int value;
};

备注

如果类型 Ty 不是占位符,则常量值 value 为 0;否则,其值为其所绑定的函数调用参数的位置。 使用它来确定第 N 个占位符 _N 的值 N

示例

// std__functional__is_placeholder.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>

using namespace std::placeholders;

template<class Expr>
void test_for_placeholder(const Expr&)
{
    std::cout << std::is_placeholder<Expr>::value << std::endl;
}

int main()
{
    test_for_placeholder(3.0);
    test_for_placeholder(_3);

    return (0);
}
0
3