这是一个令我困惑的非常简单的问题。
我收到一个源文件的以下错误,而不是另一个:
4 src/Source2.cpp:1466: error: no matching function for call to ‘cos(double&)’
5 src/Source2.cpp:1466: error: no matching function for call to ‘sin(double)’
6 src/Source2.cpp:1467: error: no matching function for call to ‘sin(double&)’
7 src/Source2.cpp:1467: error: no matching function for call to ‘sin(double)’
8 src/Source2.cpp:1468: error: no matching function for call to ‘cos(double)’
9 src/Source2.cpp:1479: error: no matching function for call to ‘cos(double&)’
10 src/Source2.cpp:1479: error: no matching function for call to ‘sin(double)’
11 src/Source2.cpp:1480: error: no matching function for call to ‘sin(double&)’
12 src/Source2.cpp:1480: error: no matching function for call to ‘sin(double)’
13 src/Source2.cpp:1481: error: no matching function for call to ‘cos(double)’
这很奇怪,因为我有Header1.hpp / Source1.cpp工作,但是Header2.hpp / Source2.cpp无效。它们之间的区别在于Source2正在使用“double”而Source1正在使用“float”,但是使用'sin(float)'或'cos(float)'时,cast会产生与上面相同的错误。
我认为我正在连接数学库,因为其他来源(相同的程序)有效并且没有抱怨。
赞赏任何建议=)
提前致谢!
代码段:
Header1.hpp:
4 #include <iostream>
5
6 #include <stdio.h>
7 #include <math.h>
8 #include <ctime>
9
10 #define GL_GLEXT_PROTOTYPES
11
13 #include <OpenGL/gl.h>
14 #include <GLUT/glut.h>
Source1.cpp:
123 aim[0] = cos(camTheta)*sin(camPhi);
124 aim[1] = sin(camTheta)*sin(camPhi);
125 aim[2] = cos(camPhi);
126
127 up[0] = cos(camTheta)*sin(camPhi - pih);
128 up[1] = sin(camTheta)*sin(camPhi - pih);
129 up[2] = cos(camPhi - pih);
Header2.hpp:
4 #include <algorithm>
5 #include <iostream>
6 #include <fstream>
7 #include <sstream>
8 #include <vector>
9 #include <cmath>
. . .
25 #define pih (M_PI/2.0)
26 #define pi M_PI
27 #define pi2 (2.0*M_PI)
Source2.cpp:
1453 double theta, phi;
1454 double x, y, z;
. . .
1464 node(n,0) = cos(theta)*sin(phi - pih);
1465 node(n,1) = sin(theta)*sin(phi - pih);
1466 node(n,2) = cos(phi - pih);
答案 0 :(得分:2)
标头<math.h>
将其名称放入全局名称空间。标头<cmath>
将其名称放入名称空间std
。 (每个都允许将名称放入另一个名称空间)。当代码使用<math.h>
时,调用sin函数的方法是sin(theta)
。当代码使用<cmath>
时,调用sin函数的方法是std::sin(theta)
(除非代码使用了憎恶using namespace std
)。在Source2.cpp中,#include
指令引入<cmath>
,因此该文件应使用限定名称而不是原始名称。或者更改#include
指令以引入<math.h>
,这是Source1.cpp所做的。
答案 1 :(得分:0)
将“libm”(m = math)的-lm
添加到您的链接行。