我最近升级了g++
,所以我可以享受lambda功能。
一切都很棒,我非常感谢那些在C ++和gcc中成功的人。我似乎无法解决一件事 - 如何让lambda的参数被模板化?以下是用于演示此问题的lambda用法的基本示例。
示例#1,一切都很美味:
#include <cstdio>
struct bar {
bar () {}
void say () {
printf ("bar::say()\n");
}
void say () const {
printf ("bar::say() const\n");
}
};
template <typename T>
void do_work (const T & pred) {
bar b;
pred (b);
}
int main () {
do_work ([] (bar & b) { b.say (); });
}
现在,假设do_work
现在使用不同的参数类型调用谓词两次。所以这里是例子#2:
#include <cstdio>
struct foo {
foo () {}
void say () {
printf ("foo::say()\n");
}
void say () const {
printf ("foo::say() const\n");
}
};
struct bar {
bar () {}
void say () {
printf ("bar::say()\n");
}
void say () const {
printf ("bar::say() const\n");
}
};
template <typename T>
void do_work (const T & pred) {
const foo f;
bar b;
pred (f);
pred (b);
}
int main () {
do_work ([] (auto & b) { b.say (); });
}
注意auto
个关键字。我也尝试过就地模板化。不要尝试使用gcc编译,这是我得到的:
./test.cpp:31:5: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
但是你明白了。理论上,我可以用新的函数声明样式来解决它,但这不是重点。这是我真正想要做的,但是使用简化的语法(foo
,bar
和do_work
为了简单起见而被剥离了):
struct pred_t {
pred_t () = default;
template <typename T>
void operator () (T && obj) const {
obj.say ();
}
};
int main () {
do_work (pred_t ());
}
有没有办法,或者至少是计划,为不完全专业化的lambda函数添加支持,以便它们有点像template <typename T> operator () (T &&)
的谓词?我甚至不知道怎么命名,lambda谓词也许?请让我知道你的想法!谢谢!
答案 0 :(得分:5)
这些被讨论为“多态性lambdas”,并被拒绝,因为它使概念提案出现问题。
去年 2009 at the Frankfurt meeting,概念提案被从工作文件中删除,但多态性lambda不再被认为是C ++ 0x。
答案 1 :(得分:1)
do_work ([] (auto & b) { b.say (); });
我认为函数/ lambda参数中不允许使用auto
关键字。