Partilhar via


Objeto _1

Espaços reservados para argumentos substituíveis.

Sintaxe

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

Comentários

Os objetos _1, _2, ... _N são espaços reservados que representam o primeiro, o segundo, até o enésimo argumento, respectivamente, em uma chamada de função para um objeto retornado por bind. Por exemplo, use _6 para especificar onde o sexto argumento deverá ser inserido quando a expressão bind for avaliada.

Nesta implementação da Microsoft, o valor de _N é 20.

Exemplo

// 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