
- The C Standard Library
- The C Standard Library
- The C++ Standard Library
- C++ Library - Home
- C++ Library - <fstream>
- C++ Library - <iomanip>
- C++ Library - <ios>
- C++ Library - <iosfwd>
- C++ Library - <iostream>
- C++ Library - <istream>
- C++ Library - <ostream>
- C++ Library - <sstream>
- C++ Library - <streambuf>
- C++ Library - <atomic>
- C++ Library - <complex>
- C++ Library - <exception>
- C++ Library - <functional>
- C++ Library - <limits>
- C++ Library - <locale>
- C++ Library - <memory>
- C++ Library - <new>
- C++ Library - <numeric>
- C++ Library - <regex>
- C++ Library - <stdexcept>
- C++ Library - <string>
- C++ Library - <thread>
- C++ Library - <tuple>
- C++ Library - <typeinfo>
- C++ Library - <utility>
- C++ Library - <valarray>
- The C++ STL Library
- C++ Library - <array>
- C++ Library - <bitset>
- C++ Library - <deque>
- C++ Library - <forward_list>
- C++ Library - <list>
- C++ Library - <map>
- C++ Library - <queue>
- C++ Library - <set>
- C++ Library - <stack>
- C++ Library - <unordered_map>
- C++ Library - <unordered_set>
- C++ Library - <vector>
- C++ Library - <algorithm>
- C++ Library - <iterator>
- C++ Programming Resources
- C++ Programming Tutorial
- C++ Useful Resources
- C++ Discussion
C++ Functional Library - operator()
Description
It invokes the stored callable function target with the parameters args.
Declaration
Following is the declaration for std::function::function::operator()
R operator()( Args... args ) const;
C++11
R operator()( Args... args ) const;
Parameters
args − parameters to pass to the stored callable function target.
Return Value
It returns none if R is void. Otherwise the return value of the invocation of the stored callable object.
Exceptions
noexcept: It doesnot throw any exceptions.
Example
In below example for std::function::operator().
#include <iostream> #include <functional> void call(std::function<int()> f) { std::cout << f() << '\n'; } int normal_function() { return 50; } int main() { int n = 4; std::function<int()> f = [&n](){ return n; }; call(f); n = 5; call(f); f = normal_function; call(f); }
The output should be like this −
4 5 50
functional.htm
Advertisements