bind1st和bind2nd只能用于二元函数对象
c++11 bind绑定器 返回的结果还是个函数对象
std::bind函数定义在头文件functional中,是一个函数模板,它就像一个函数适配器,接受一个可调用对象(callable object),生成一个新的可调用对象来“适应”原对象的参数列表。一般而言,我们用它可以把一个原本接收N个参数的函数fn,通过绑定一些参数,返回一个接收M个(M可以大于N,但这么做没什么意义)参数的新函数。同时,使用std::bind函数还可以实现参数顺序调整等操作
bind简单使用
#include <iostream>
#include <string>
#include <functional>
using namespace std;
void SayHello(string mess) {
cout << "SayHello(string mess)" << endl;
}
int Play(int mess) {
cout << "int Play(int mess)=" << mess << endl;
return mess;
}
void Say(string mess) {
cout << "int SayHello(int mess)=" << mess << endl;
}
class student {
public:
int show(int x) {
cout << "Student int show(int x)" << endl;
return x;
}
};
int main() {
bind(SayHello, "Hello")();
//占位符
bind(&student::show, student(), placeholders::_1)(200);
//使用fuction 接受bind返回值
function<int (int )> f= bind(Play, placeholders::_1);
f(500);
f(400);
f(300);
system("pause");
return 0;
}
自己实现bind
#include <iostream>
#include <string>
#include <functional>
using namespace std;
template<typename T>
class MyFunction {};
template<typename R, typename A>
//接受函数,接受1个函数参数
class MyFunction<R(A)> {
public:
//定义函数指针 返回值R ,1个函数参数
typedef R(*pfunction)(A);
MyFunction(pfunction _function , A _args) : function(_function), args(_args) {}
R operator()() {
return (*function)(args);
}
private:
pfunction function;
A args;
};
//R 是函数, A 是绑定的参数
template<typename R,typename A>
MyFunction<R> mybind(R _function, A _args) {
//返回函数对象
return MyFunction<R>(_function, _args);
}
int SayHello(int mess) {
cout << "int SayHello(int mess)=" << mess << endl;
return mess;
}
int main() {
MyFunction<int(int)> r = mybind<int(int),int>(SayHello,100);
r();
system("pause");
return 0;
}
bind 和function 结合实现简单线程池
#include <iostream>
#include <vector>
#include<functional>
#include<Thread>
using namespace std;
class MyThread {
public:
MyThread(function<void()> _f):f(_f) {}
thread start() {
return thread(f);
}
private:
function<void()> f;
};
class ThreadPool {
public:
ThreadPool() {}
~ThreadPool() {
for (int i = 0; i < _pthreadPool.size(); ++i) {
delete _pthreadPool[i];
}
}
void start(int size=10) {
for (int i = 0; i < size; i++) {
function<void()> f = bind(&ThreadPool::runThreadId,this, i);
MyThread * pThread =new MyThread (f);
_pthreadPool.push_back(pThread);
}//end for
for (int i = 0; i < size; i++) {
_threadHandler.push_back(_pthreadPool[i]->start());
}//end for
for (thread & t : _threadHandler) {
t.join();
}
}
void runThreadId(int id) {
cout << "runThreadId " << id << endl;
}
private:
vector<MyThread *> _pthreadPool;
vector<thread > _threadHandler;
};
int main() {
ThreadPool tp;
tp.start();
system("pause");
return 0;
}
我正在尝试测试是否存在表单。我是Rails新手。我的new.html.erb_spec.rb文件的内容是:require'spec_helper'describe"messages/new.html.erb"doit"shouldrendertheform"dorender'/messages/new.html.erb'reponse.shouldhave_form_putting_to(@message)with_submit_buttonendendView本身,new.html.erb,有代码:当我运行rspec时,它失败了:1)messages/new.html.erbshou
我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t
尝试通过RVM将RubyGems升级到版本1.8.10并出现此错误:$rvmrubygemslatestRemovingoldRubygemsfiles...Installingrubygems-1.8.10forruby-1.9.2-p180...ERROR:Errorrunning'GEM_PATH="/Users/foo/.rvm/gems/ruby-1.9.2-p180:/Users/foo/.rvm/gems/ruby-1.9.2-p180@global:/Users/foo/.rvm/gems/ruby-1.9.2-p180:/Users/foo/.rvm/gems/rub
我有一个对象has_many应呈现为xml的子对象。这不是问题。我的问题是我创建了一个Hash包含此数据,就像解析器需要它一样。但是rails自动将整个文件包含在.........我需要摆脱type="array"和我该如何处理?我没有在文档中找到任何内容。 最佳答案 我遇到了同样的问题;这是我的XML:我在用这个:entries.to_xml将散列数据转换为XML,但这会将条目的数据包装到中所以我修改了:entries.to_xml(root:"Contacts")但这仍然将转换后的XML包装在“联系人”中,将我的XML代码修改为
为了将Cucumber用于命令行脚本,我按照提供的说明安装了arubagem。它在我的Gemfile中,我可以验证是否安装了正确的版本并且我已经包含了require'aruba/cucumber'在'features/env.rb'中为了确保它能正常工作,我写了以下场景:@announceScenario:Testingcucumber/arubaGivenablankslateThentheoutputfrom"ls-la"shouldcontain"drw"假设事情应该失败。它确实失败了,但失败的原因是错误的:@announceScenario:Testingcucumber/ar
我在我的项目中添加了一个系统来重置用户密码并通过电子邮件将密码发送给他,以防他忘记密码。昨天它运行良好(当我实现它时)。当我今天尝试启动服务器时,出现以下错误。=>BootingWEBrick=>Rails3.2.1applicationstartingindevelopmentonhttp://0.0.0.0:3000=>Callwith-dtodetach=>Ctrl-CtoshutdownserverExiting/Users/vinayshenoy/.rvm/gems/ruby-1.9.3-p0/gems/actionmailer-3.2.1/lib/action_mailer
我的瘦服务器配置了nginx,我的ROR应用程序正在它们上运行。在我发布代码更新时运行thinrestart会给我的应用程序带来一些停机时间。我试图弄清楚如何优雅地重启正在运行的Thin实例,但找不到好的解决方案。有没有人能做到这一点? 最佳答案 #Restartjustthethinserverdescribedbythatconfigsudothin-C/etc/thin/mysite.ymlrestartNginx将继续运行并代理请求。如果您将Nginx设置为使用多个上游服务器,例如server{listen80;server
在MRIRuby中我可以这样做:deftransferinternal_server=self.init_serverpid=forkdointernal_server.runend#Maketheserverprocessrunindependently.Process.detach(pid)internal_client=self.init_client#Dootherstuffwithconnectingtointernal_server...internal_client.post('somedata')ensure#KillserverProcess.kill('KILL',
我正在使用puppet为ruby程序提供一组常量。我需要提供一组主机名,我的程序将对其进行迭代。在我之前使用的bash脚本中,我只是将它作为一个puppet变量hosts=>"host1,host2"我将其提供给bash脚本作为HOSTS=显然这对ruby不太适用——我需要它的格式hosts=["host1","host2"]自从phosts和putsmy_array.inspect提供输出["host1","host2"]我希望使用其中之一。不幸的是,我终其一生都无法弄清楚如何让它发挥作用。我尝试了以下各项:我发现某处他们指出我需要在函数调用前放置“function_”……这