이 작업을 수행하는 방법이 있습니까 (MS VS 2008)? l- 값 객체로 boost :: bind
boost::bind mybinder = boost::bind(/*something is binded here*/);
mybinder(/*parameters here*/); // <--- first call
mybinder(/*another parameters here*/); // <--- one more call
나는
int foo(int){return 0;}
boost::bind<int(*)(int)> a = boost::bind(f, _1);
을 시도했지만 작동하지 않습니다.
"작동하지 않는다"는 것은 무엇을 의미합니까? –
몇 가지 이전 답변을 수락하십시오. 당신은 1 년 넘게 여기에 있었는데, 그것은 SO가 어떻게 작동 하는지를 배울 수있는 충분한 시간입니다. –