3 Star 2 Fork 3

四月是你的谎言/深入应用C++11:代码优化与工程级应用 的实践代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
1-21.cpp 643 Bytes
一键复制 编辑 原始数据 按行查看 历史
四月是你的谎言 提交于 2021-07-08 09:45 . 添加注释和代码格式
#include <iostream>
#include <functional>
void output(int x, int y)
{
std::cout << x << " " << y << std::endl;
}
int main(void)
{
std::bind(output, 1, 2)();//1 2
std::bind(output, std::placeholders::_1, 1)(2);// 2 1
std::bind(output, 2, std::placeholders::_1)(1);// 2 1
std::bind(output, 4, std::placeholders::_2)(1, 3); //调用时,第一个参数(1)被吞掉了 //4 3
std::bind(output, 4, std::placeholders::_4)(1, 2, 3, 3); //占位符对应的数是从括号内,选择第几个参数的意思吗?//4 3
std::bind(output, std::placeholders::_1, std::placeholders::_2)(0, 9);//0 9
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/HeLiangMsg/c11_book_learned_code.git
[email protected]:HeLiangMsg/c11_book_learned_code.git
HeLiangMsg
c11_book_learned_code
深入应用C++11:代码优化与工程级应用 的实践代码
master

搜索帮助