Cout不是std的成员,以及有关c ++的其他问题
请允许我在前面说,我已经包括了(也适用于字符串,endl,并且毫不夸张地说,一切都不起作用); 就语法而言,我的IDE没有显示任何错误; 我不明白为什么会发生这个问题? 它在我编写的其他C ++代码示例中工作正常。
所以我正在尝试做一个小游戏,公牛和牛。 我的主要代码如下所示:
#include <iostream>
#include "stdafx.h"
#include "BullsAndCows.h"
using std::cout;
using std::endl;
using std::cin;
using std::string;
int main()
{
string userInput = "";
bool playAgain = false;
int gameDiff;
constexpr char * GREETING = "Welcome to Bulls and Cows! Please enter the difficulty level: (1) Easy, (2) Medium, (3) Hard";
cin >> gameDiff;
do
{
BullsAndCows *bc = new BullsAndCows();
bc->playGame(gameDiff);
} while (playAgain);
constexpr char * INFORMATION = "Total Word Length is: ";
//Introduce the game.
cout << GREETING <<endl;
return 0;
}
我的标题:
#ifndef BULLSANDCOWS_H
#define BULLSANDCOWS_H
class BullsAndCows {
public:
void playGame(int gameDiff);
};
#endif
最后,我的BullsAndCows.cpp文件:
#include <iostream>
#include <string>
#include "stdafx.h"
#include "BullsAndCows.h"
using std::cout;
using std::endl;
using std::cin;
using std::string;
void BullsAndCows::playGame(int gameDiff) {
string wordGuess = "";
string secretWord = "";
int numBulls = 0;
int numCows = 0;
int numGuesses = 0;
switch (gameDiff)
{
case 1: {
numGuesses = 30;
secretWord = "Hello";
for (int i = 0; i < 30; i++) {
numBulls = 0;
numCows = 0;
cout << "Word Length to Guess Is Five, you have " << numGuesses << " guesses remaining" << endl;
cout << "Enter your word guess";
cin >> wordGuess;
for (int j = 0; j < wordGuess.length; j++) {
if (wordGuess.at(j) == secretWord.at(j)) {
numBulls++;
}
else if (secretWord.find(wordGuess.at(j)) != -1) {
numCows++;
}
}
cout << "Bulls: " << numBulls << endl;
cout << "Cows: " << numCows << endl;
if (numBulls == secretWord.length) {
cout << "YOU WIN!" << endl;
break;
}
}
break;
}
case 2:
numGuesses = 20;
break;
case 3:
numGuesses = 10;
break;
}
}
我得到的错误是“cout不是std的成员”,cout符号不能在使用声明中使用。 在此之前,我使用“使用命名空间标准”,并会返回错误,如“公牛队”并不是一个命名空间或类(如果它不是一个类,那么我必须是一个火星人)。 还有一些关于失踪的“;” 在userInput之前,例如在我的main.cpp代码中; 这是没有意义的,因为没有什么东西是缺少的。 我正在使用VS2017。 为什么C ++这样恼人的语言可以工作?
放置指令
#include "stdafx.h"
在任何其他包含指令之前。
链接地址: http://www.djcxy.com/p/73083.html上一篇: Cout is not a member of std, and other issues regarding c++