- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个很简单的问题,让我很困惑。
我收到一个源文件的以下错误,但另一个没有:
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 使用的是“doubles”而 Source1 使用的是“floats”,但是使用“sin(float)”或“cos(float)”进行转换时会出现与上面相同的错误。
我想我正在链接数学库,因为其他来源(相同的程序)可以工作并且不会提示。
感谢任何建议 =)
提前致谢!
代码片段:
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>
源1.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);
最佳答案
header <math.h>
将其名称放入全局命名空间。标题 <cmath>
将其名称放入命名空间 std
. (也允许每个人将名称放入另一个 namespace )。当代码使用 <math.h>
时,调用sin函数的方式是sin(theta)
.当代码使用 <cmath>
时,调用sin函数的方式是std::sin(theta)
(除非代码使用可憎的 using namespace std
)。在 Source2.cpp 中,#include
指令拉入 <cmath>
, 因此文件应使用限定名称而不是原始名称。或者更改 #include
指令拉入 <math.h>
,这就是 Source1.cpp 所做的。
关于c++ - 找不到 sin(double)、sin(double&)、cos(double)、cos(double&),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16215099/
例如,我有一个父类Author: class Author { String name static hasMany = [ fiction: Book,
代码如下: dojo.query(subNav.navClass).forEach(function(node, index, arr){ if(dojo.style(node, 'd
我有一个带有 Id 和姓名的学生表和一个带有 Id 和 friend Id 的 Friends 表。我想加入这两个表并找到学生的 friend 。 例如,Ashley 的 friend 是 Saman
我通过互联网浏览,但仍未找到问题的答案。应该很容易: class Parent { String name Child child } 当我有一个 child 对象时,如何获得它的 paren
我正在尝试创建一个以 Firebase 作为我的后端的社交应用。现在我正面临如何(在哪里?)找到 friend 功能的问题。 我有每个用户的邮件地址。 我可以访问用户的电话也预订。 在传统的后端中,我
我主要想澄清以下几点: 1。有人告诉我,在 iOS 5 及以下版本中,如果您使用 Game Center 设置多人游戏,则“查找 Facebook 好友”(如与好友争夺战)的功能不是内置的,因此您需要
关于redis docker镜像ENTRYPOINT脚本 docker-entrypoint.sh : #!/bin/sh set -e # first arg is `-f` or `--some-
我是一名优秀的程序员,十分优秀!