다음을 통해 공유


function::swap

두 호출 가능 개체를 바꿉니다.

void swap(function& right);

매개 변수

  • right
    바꿔 함수 개체입니다.

설명

멤버 함수에 대상 개체 간에 교체 *this 및 right.일정 한 시간에 수행 하 고 예외를 throw 합니다.

예제

 

// std_tr1__functional__function_swap.cpp 
// compile with: /EHsc 
#include <functional> 
#include <iostream> 
 
int neg(int val) 
    { 
    return (-val); 
    } 
 
int main() 
    { 
    std::function<int (int)> fn0(neg); 
    std::cout << std::boolalpha << "empty == " << !fn0 << std::endl; 
    std::cout << "val == " << fn0(3) << std::endl; 
 
    std::function<int (int)> fn1; 
    std::cout << std::boolalpha << "empty == " << !fn1 << std::endl; 
    std::cout << std::endl; 
 
    fn0.swap(fn1); 
    std::cout << std::boolalpha << "empty == " << !fn0 << std::endl; 
    std::cout << std::boolalpha << "empty == " << !fn1 << std::endl; 
    std::cout << "val == " << fn1(3) << std::endl; 
 
    return (0); 
    } 
 
  

요구 사항

헤더: <functional>

네임 스페이스: std

참고 항목

참조

function Class

function::operator=