ฉันใหม่กับ C ++ 11 ฉันกำลังเขียนฟังก์ชั่นแลมบ์ดาแบบเรียกซ้ำ แต่มันไม่ได้รวบรวม
sum.cpp
#include <iostream>
#include <functional>
auto term = [](int a)->int {
return a*a;
};
auto next = [](int a)->int {
return ++a;
};
auto sum = [term,next,&sum](int a, int b)mutable ->int {
if(a>b)
return 0;
else
return term(a) + sum(next(a),b);
};
int main(){
std::cout<<sum(1,10)<<std::endl;
return 0;
}
ข้อผิดพลาดในการรวบรวม:
vimal @ linux-718q: ~ / Study / 09C ++ / c ++ 0x / lambda> g ++ -std = c ++ 0x sum.cpp
sum.cpp: ในฟังก์ชั่นแลมบ์ดา: sum.cpp: 18: 36: ข้อผิดพลาด: ' ((<lambda(int, int)>*)this)-><lambda(int, int)>::sum
' ไม่สามารถใช้เป็นฟังก์ชันได้
รุ่น gcc
gcc รุ่น 4.5.0 20091231 (ทดลอง) (GCC)
แต่ถ้าฉันเปลี่ยนการประกาศsum()
ด้านล่างมันได้ผล:
std::function<int(int,int)> sum = [term,next,&sum](int a, int b)->int {
if(a>b)
return 0;
else
return term(a) + sum(next(a),b);
};
ใครช่วยกรุณาโยนแสงนี้
mutable
คำหลักที่ทำมี?
std::function<int(int,int)> sum = [&](int a, int b) {