如何从头文件中使用外部枚举类型?

时间:2009-12-30 11:39:21

标签: visual-c++ enums

class Board
{
public:
    enum Player {X = -1, O, E}; 
    bool win(Player P); // A function that returns true if Player P has won the game, and 
                        // false otherwise. 
}; // end class board

以上是我的Tic-Tac-Toe游戏的头文件的一部分。我正在尝试测试win函数,并对如何从驱动程序文件测试它感到困惑:

#include <iostream>
using namespace std;

#include "Board.h"

// function main begins program execution
int main ()
{
    Board a;
    cout << a.win(X) << endl; // <------------------? ? ?
    return 0; // indicate successful termination
} // end function main

我试图在main中创建一个Board :: Player类型,但仍然无法编译它。有什么建议吗?

1 个答案:

答案 0 :(得分:5)

在C ++中,你总是要考虑范围,所以:

cout << a.win(X) << endl;

应该是:

cout << a.win(Board::X) << endl;