好吧所以我对c ++比较陌生,我想弄清楚如何使用函数指针。我有一个函数,这是一个简单的数值积分,我试图传递给它集成的功能和集成的限制。我在Xcode中这样做,错误在主代码中说“没有匹配的函数来调用SimpsonIntegration”。如果有人可以请求帮助我会很感激。此外,因为我正在学习,任何其他批评也将受到赞赏。 main.cpp函数如下。
#include <iostream>
#include "simpson7.h"
#include <cmath>
using namespace std;
int main(int argc, const char * argv[])
{
double a=0;
double b=3.141519;
int bin = 1000;
double (*sine)(double);
sine= &sinx;
double n = SimpsonIntegration(sine, 1000, 0, 3.141519);
cout << sine(0)<<" "<<n;
}
simpson.h文件如下:
#ifndef ____1__File__
#define ____1__File__
#include <iostream>
template <typename mytype>
double SimpsonIntegration(double (*functocall)(double) ,int bin, double a, double b);
extern double (*functocall)(double);
double sinx(double x);
#endif /* defined(____1__File__) */
下一步是simpson.cpp文件:
#include "simpson7.h"
#include <cmath>
#include <cassert>
//The function will only run if the number of bins is a positive integer.
double sinx(double x){
return sin(x);
}
double SimpsonIntegration( double (*functocall)(double), int bin, double a, double b){
assert(bin>0);
//assert(bin>>check);
double integralpart1=(*functocall)(a), integralpart2=(*functocall)(b);
double h=(b-a)/bin;
double j;
double fa=sin(a);
double fb=sin(b);
for (j=1; j<(bin/2-1); j++) {
integralpart1=integralpart1+(*functocall)(a+2*j*h);
}
for (double l=1; l<(bin/2); l++) {
integralpart2=integralpart2+(*functocall)(a+(2*l-1)*h);
}
double totalintegral=(h/3)*(fa+2*integralpart1+4*integralpart2 +fb);
return totalintegral;
}
好了,现在我修复了我试图编译的那个愚蠢的错误,我收到了这个错误:“链接器命令失败,退出代码为1”。
答案 0 :(得分:4)
如果你查看头文件,你就有了这个声明
template <typename mytype>
double SimpsonIntegration(double (*functocall)(double) ,int bin, double a, double b);
在源文件中
double SimpsonIntegration( double (*functocall)(double), int bin, double a, double b)
这不是同一个功能。编译器尝试搜索非模板函数,但尚未声明,因此它会产生错误。
简单的解决方案是删除头文件中的模板规范。
如果你做希望函数成为模板函数,那么你应该注意声明和定义的分离,参见例如this old question