我们在家庭作业计划中得到了这个typedef。作为程序员菜鸟,我之前没有看到过这样的事情。这是否意味着任何DoubleFunction2D实际上是(双,双)的2元组?
程序:
的typedef:
typedef double (*DoubleFunction) (double);
typedef double (*DoubleFunction2D) (double, double);
typedef double (*DoubleFunction3D) (double, double, double);
示例用法
(我的WIP任务解决方案,尚未编译/测试。内部):
double expf2D(double x, double y)
{
double r = sqrt(pow(x,2) + pow(y,2));
return my_expf(r);
}
double DiskMonteCarloIntegrator(DoubleFunction2D f, double r1, double r2, int N)
{
bool is_inside_ring(double x, double y){
return is_inside_ellipse(x, y, r2/2, r2/2) && !(is_inside_ellipse(x, y, r1/2, r1/2));
}
int i=0;
double x, y, sum = 0;
while(i < N)
{
x = RandomDouble(-1*r1, r1);
y = RandomDouble(-1*r1, r1);
if(is_inside_ring(x, y))
{
sum += f(x, y);
i++;
}
}
double avg = sum / N;
double integral = avg * (pow(r2, 2) - pow(r1, 2)) * M_PI;
return integral;
}
//extract
void main(int argc, char *argv[]){
DiskMonteCarloIntegrator(expf2D, 1.0, 2.0, 1000000);
}
答案 0 :(得分:6)
这里没有元组(事实上,C编程语言中没有&#34;元组和#34; 。
typedef double (*DoubleFunction) (double);
表示 DoubleFunction
是一个指向函数的指针,该函数接受double
并返回double
。
typedef double (*DoubleFunction2D) (double, double);
表示 DoubleFunction2D
是一个指向函数的指针,该函数接受两个double
值并返回double
。
typedef double (*DoubleFunction3D) (double, double, double);
表示 DoubleFunction3D
是一个指向函数的指针,该函数需要三个double
值并返回double
。