_1 对象

可替换自变量的占位符。

语法

namespace placeholders {
    extern unspecified _1, _2, ... _N
} // namespace placeholders (within std)

备注

对象 _1, _2, ... _N 是占位符,在对 bind 返回的对象的函数调用中分别表示第一个、第二个、…、第 N 个参数。 例如,使用 _6 来指定在计算 bind 表达式时应插入的第六个参数的位置。

在 Microsoft 实现中,_N 的值为 20。

示例

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

using namespace std::placeholders;

void square(double x)
    {
    std::cout << x << "^2 == " << x * x << std::endl;
    }

void product(double x, double y)
    {
    std::cout << x << "*" << y << " == " << x * y << std::endl;
    }

int main()
    {
    double arg[] = {1, 2, 3};

    std::for_each(&arg[0], &arg[3], square);
    std::cout << std::endl;

    std::for_each(&arg[0], &arg[3], std::bind(product, _1, 2));
    std::cout << std::endl;

    std::for_each(&arg[0], &arg[3], std::bind(square, _1));

    return (0);
    }
1^2 == 1
2^2 == 4
3^2 == 9

1*2 == 2
2*2 == 4
3*2 == 6

1^2 == 1
2^2 == 4
3^2 == 9