我已经浪费时间试图解决这个问题,但到目前为止还没有运气......我已经尝试通过 StackOverflow 查看相同的问题,但主要与人们使用的 IDE 有关,例如 VS 或 Eclipse。
我正在为斯坦福读者的 C++ 课程做一些示例,但代码无法正常工作。我试图弄清楚如何使用外部库,但总是出错。我可能没有使用正确的命令,但是我不知道要使用哪个命令。
我正在使用 Cygwin,它是做 C++ 练习的终端。我将所有文件都放在同一个文件夹中。我正在使用 Windows 7,但这不应该是最大的问题。
作为一个例子,这个错误很好地展示了我在编写 g++ Craps.cpp 时得到的结果:
$ g++ 废话.cpp
/tmp/ccdTdi0t.o:Craps.cpp:(.text+0x1cf): 对“randomInteger(int, int)”的未定义引用
/tmp/ccdTdi0t.o:Craps.cpp:(.text+0x1e6): undefined reference to `randomInteger(int, int)'
/usr/lib/gcc/i686-pc-cygwin/4.5.3/../../../../i686-pc-cygwin/bin/ld: /tmp/ccdTdi0t.o: 坏
在“.ctors”部分中重新定位地址 0x0
collect2: ld 返回 1 个退出状态
我这次运行的示例只是带有外部库的示例之一,如果我错了另一个,它会给我同样的错误。它不会找到图书馆。
这是我的主要也称为 Craps.cpp:
#include <iostream>
#include "random.h"
using namespace std;
bool tryToMakePoint(int point);
int rollTwoDice();
int main() {
cout << "This program plays a game of craps." << endl;
int point = rollTwoDice();
switch (point) {
case 7: case 11:
cout << "That's a natural. You win." << endl;
break;
case 2: case 3: case 12:
cout << "That's craps. You lose" << endl;
break;
default:
cout << "Your point is " << point << "." << endl;
if (tryToMakePoint(point)) {
cout << "You made your point. You win." << endl;
} else {
cout << "You rolled a seven. You lose." << endl;
}
}
return 0;
}
bool tryToMakePoint(int point) {
while (true) {
int total = rollTwoDice();
if (total == point) return true;
if (total == 7) return false;
}
}
int rollTwoDice() {
cout << "Rolling the dice . . . " << endl;
int d1 = randomInteger(1, 6);
int d2 = randomInteger(1, 6);
int total = d1 + d2;
cout << "You rolled " << d1 << " and " << d2
<< " - that's " << total << endl;
return total;
}
我的随机数.cpp:
#include <cstdlib>
#include <cmath>
#include <ctime>
#include "random.h"
using namespace std;
void initRandomSeed();
int randomInteger(int low, int high) {
initRandomSeed();
double d = rand() / (double(RAND_MAX) + 1);
double s = d * (double(high) - low + 1);
return int(floor(low + s ));
}
double randomReal(double low, double high) {
initRandomSeed();
double d = rand() / (double(RAND_MAX) + 1);
double s = d * (high - low);
return low + s;
}
bool randomChance(double p) {
initRandomSeed();
return randomReal(0, 1) < p;
}
void setRandomSeed(int seed) {
initRandomSeed();
srand(seed);
}
void initRandomSeed() {
static bool initialized = false;
if (!initialized) {
srand(int(time(NULL)));
initialized = true;
}
}
最后是我的 random.h:
#ifndef _random_h
#define _random_h
int randomInteger(int low, int high);
double randomReal(double low, double high);
bool randomChance(double p);
void setRandomSeed(int seed);
#endif
我希望有一个人可以帮助我。如果这是错误的 Cygwin 命令,那么如果我能看到我应该写什么就太好了。
编辑:刚刚发现我什至无法正确写下书中的示例。现在已修复,应该没有错误......我非常希望如此。对于那个很抱歉。