Freigeben über


_1-Objekt

Platzhalter für austauschbare Argumente.

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

Hinweise

Bei den Objekte _1, _2, ... _M handelt es sich um Platzhalter, die jeweils das erste, zweite, ..., n-te Argument in einem Funktionsaufruf eines Objekts festlegen, das von bind-Funktion zurückgegeben wird. Sie verwenden _N, um anzugeben, wo das n-te Argument bei Auswertung des Bindungsausdrucks eingefügt werden soll.

In dieser Implementierung lautet der Wert von M 20.

Beispiel

 

// 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); 
    } 
 
  

Anforderungen

Header: <functional>

Namespace: std

Siehe auch

Referenz

bind-Funktion

is_placeholder-Klasse