다음을 통해 공유


swap Function <functional>

교체 2 function 개체입니다.

template<class Fty>
void swap(function<Fty>& f1,
    function<Fty>& f2);

매개 변수

  • Fty
    함수 개체에 의해 제어 되는 형식입니다.

  • f1
    첫 번째 함수 개체입니다.

  • f2
    두 번째 함수 개체입니다.

설명

함수 반환 f1.swap(f2).

예제

 

// std_tr1__functional__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; 
 
    swap(fn0, 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