Udostępnij za pośrednictwem


_1 Object

Symbole zastępcze dla wymiennych argumentów.

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

Uwagi

Obiekty _1, _2, ... _M są symbolami zastępczymi wyznaczające pierwszym, drugim,..., argument mies, odpowiednio do obiektu zwróconego przez wywołanie funkcji bind Function.Za pomocą _N , aby określić, gdzie n-ty argument powinien być wstawiane jest obliczane wyrażenie bind.

W tej implementacji wartość z M wynosi 10.

Przykład

 

// std_tr1__functional__placeholder.cpp 
// compile with: /EHsc 
#include <functional> 
#include <algorithm> 
#include <iostream> 
 
using namespace std::tr1::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::tr1::bind(product, _1, 2)); 
    std::cout << std::endl; 
 
    std::for_each(&arg[0], &arg[3], std::tr1::bind(square, _1)); 
 
    return (0); 
    } 
 
  

Wymagania

Nagłówek: <functional>

Obszar nazw: std

Zobacz też

Informacje

bind Function

is_placeholder Class