Condividi tramite


Oggetto _1

Segnaposto per argomenti sostituibili.

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

Note

Gli oggetti _1, _2, ... _M sono segnaposti che definiscono il primo, secondo,..., ennesimo argomento, rispettivamente in una chiamata di funzione a un oggetto restituito da Funzione bind. Utilizzare _N per specificare dove inserire l'ennesimo argomento quando viene valutata l'espressione di associazione.

In questo implementazione, il valore di M è 20.

Esempio

 

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

Requisiti

Intestazione: <funzionale>

Spazio dei nomi: std

Vedere anche

Riferimenti

Funzione bind

Classe is_placeholder