function函数对象应用示例

编程入门 行业动态 更新时间:2024-10-14 22:22:22

function函数对象应用<a href=https://www.elefans.com/category/jswz/34/1770116.html style=示例"/>

function函数对象应用示例

#include "pch.h"
#include <iostream>
#include <vector> 
#include <map>
#include <functional>  // 使用function函数对象类型
#include <algorithm>
#include <ctime>
#include <string>
using namespace std;#if 0
/*
C++11提供的绑定器和函数对象bind   functionC++ STL  bind1st和bind2nd =》 本身还是一个函数对象
function : 绑定器,函数对象,lambda表达式 它们只能使用在一条语句中
*/void doShowAllBooks() { cout << "查看所有书籍信息" << endl; }
void doBorrow() { cout << "借书" << endl; }
void doBack() { cout << "还书" << endl; }
void doQueryBooks() { cout << "查询书籍" << endl; }
void doLoginOut() { cout << "注销" << endl; }int main()
{int choice = 0;//       C的函数指针map<int, function<void()>> actionMap;actionMap.insert({ 1, doShowAllBooks }); // insert(make_pair(xx,xx));actionMap.insert({ 2, doBorrow });actionMap.insert({ 3, doBack });actionMap.insert({ 4, doQueryBooks });actionMap.insert({ 5, doLoginOut });for (;;){cout << "-----------------" << endl;cout << "1.查看所有书籍信息" << endl;cout << "2.借书" << endl;cout << "3.还书" << endl;cout << "4.查询书籍" << endl;cout << "5.注销" << endl;cout << "-----------------" << endl;cout << "请选择:";cin >> choice;auto it = actionMap.find(choice); // map  pair  first secondif (it == actionMap.end()){cout << "输入数字无效,重新选择!" << endl;}else{it->second();}// 不好,因为这块代码无法闭合  无法做到“开-闭原则/*switch (choice){case 1:break;case 2:break;case 3:break;case 4:break;case 5:break;default:break;}*/}return 0;
}void hello1()
{cout << "hello world!" << endl;
}
void hello2(string str) // void (*pfunc)(string)
{cout << str << endl;
}
int sum(int a, int b)
{return a + b;
}class Test
{
public: // 必须依赖一个对象void (Test::*pfunc)(string)void hello(string str) { cout << str << endl; }
};
int main()
{/*1.用函数类型实例化function2.通过function调用operator()函数的时候,需要根据函数类型传入相应的参数*/// 从function的类模板定义处,看到希望用一个函数类型实例化functionfunction<void()> func1 = hello1;func1(); // func1.operator()() => hello1()function<void(string)> func2 = hello2;func2("hello hello2!"); // func2.operator()(string str) => hello2(str)function<int(int, int)> func3 = sum;cout<<func3(20, 30)<<endl;// operator()function<int(int, int)> func4 = [](int a, int b)->int {return a + b; };cout << func4(100, 200) << endl;function<void(Test*, string)> func5 = &Test::hello;func5(&Test(), "call Test::hello!");return 0;
}
#endif

更多推荐

function函数对象应用示例

本文发布于:2024-03-14 18:18:41,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1737056.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:示例   函数   对象   function

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!