다음을 통해 공유


_1 Object

대체 가능한 인수에 대 한 자리 표시자입니다.

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

설명

개체는 _1, _2, ... _M 첫째, 둘째,..., Mth 인수는 함수 호출에 의해 반환 된 개체에 각각 지정 된 자리 표시자 bind Function.사용 하면 _N 바인딩 식을 계산할 때 n 번째 인수 삽입할 수 위치를 지정할 수 있습니다.

이 구현에서 값의 M 10입니다.

예제

 

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

요구 사항

헤더: <functional>

네임 스페이스: std

참고 항목

참조

bind Function

is_placeholder Class