你能告诉我为什么visual studio编译这段代码(在消息的末尾)就好了,但g ++给了我一个错误:
chapter8_1.cpp:97:50: error: macro "minor" passed 3 arguments, but takes just 1
chapter8_1.cpp:136:36: error: macro "minor" passed 3 arguments, but takes just 1
chapter8_1.cpp:97:11: error: function definition does not declare parameters
chapter8_1.cpp: In member function ‘double Matrices::determinant(double**, int)’:
chapter8_1.cpp:136:17: error: ‘minor’ was not declared in this scope
现在这两个函数都在struct
中,但是如果我在没有struct
(简单的独立函数)中编译它们,那么g ++没有给我任何错误,程序运行正常。该程序旨在计算任何方阵的行列式。
代码:
struct Matrices
{
.......
double **minor(double **matrix, int dim, int row) // row stands for the number of column that we are expanding by
{
int dim2 =--dim;
double **minor2;
minor2=new double*[dim2]; // creates minor matrix
for(int i=0; i<dim2; ++i)
minor2[i]=new double[dim2];
for(int hhh=0; hhh<dim2; ++hhh)
{
int bbb=0;
for(int aaa=0; aaa<dim2+1; ++aaa) // initializing the minor matrix
{
if (aaa==row)
continue;
else
{
minor2[hhh][bbb]=matrix[hhh+1][aaa];
++bbb;
}
}
}
return minor2;
}
double determinant(double **mat, int dim)
{
double det=0;
if(dim==1)
det=mat[0][0];
if(dim==2)
det=mat[0][0]*mat[1][1]-mat[0][1]*mat[1][0];
else
{
double ***setOFmat; // pointer that points to minors
setOFmat=new double**[dim];
for (int ddd=0; ddd<dim; ++ddd) // ddd represents here the number of column we are expanding by
setOFmat[ddd]=minor(mat, dim, ddd);
for (int ddd=0; ddd<dim; ++ddd) // ddd srepresents the same here
{
det= det + pow(-1.0,ddd)*mat[0][ddd]*determinant(setOFmat[ddd], dim-1); // actual formula that calculates the determinant
}
}
return det;
}
答案 0 :(得分:0)
您应该更仔细地阅读错误消息: - )
chapter8_1.cpp:97:50:错误: 宏 “次要”传递3个参数,但只需1个
这意味着gcc
认为minor
是某些描述的宏,所以预处理该行:
double **minor(double **matrix, int dim, int row)
可能很麻烦。
我会用gcc -E
编译它以获得预处理器输出,这样你就可以告诉:
minor
宏。