没有名称的C ++ 11 STL容器数组

时间:2014-03-11 20:35:28

标签: c++ arrays stl

所以我有这个功课要做,我正在尝试处理一个整数数组......并且我已经得到了一些由我的指令编写的代码,而且我对如何处理一个没有名字被传递......在这里生病告诉你我的意思。

我已经获得了这个课程,我需要编写一些成员函数。

class TurtleGraphics
{
private:
const static size_t NROWS = 22;  // number of rows in floor
const static size_t NCOLS = 70;  // number of colums in floor

const static int STARTING_ROW = 0;    // row that turtle will start in
const static int STARTING_COL = 0;    // column that turtle will start in

const static int STARTING_DIRECTION = 6; // direction that turtle 
                      // will be facing at the start
                      // 6 as in 6 o'clock on an analog clock
                      // The other 3 possible values are 3,9 and 12 o'clock

const static bool STARTING_PEN_POSITION = false; // Pen will be up when 
                            // program starts
                            // false means pen up, true means pen down

void displayFloor() const;  // will display floor on the screen

std::array <std::array <bool, NCOLS>, NROWS> m_Floor;

public:
const static int ARRAY_SIZE = 250;

TurtleGraphics(void); //ctor will init. floor to all "false" values, 
                      //     as well as initialization of other data members
void processTurtleMoves( const std::array< int, ARRAY_SIZE> );  // will process
                   // the commands contained in array "commands"    
};

我试图编写void processTurtleMoves(const std :: array&lt; int,ARRAY_SIZE&gt;);

任何人都可以告诉我为什么数组没有名称,或者为什么它不需要名字,或者这只是一个错误?

主要问题是我试图在没有名字的情况下处理这个数组而且我很困惑。

PS。没有时间与教练联系。

1 个答案:

答案 0 :(得分:4)

在函数定义中,为函数参数指定名称:

void TurtleGraphics::processTurtleMoves(const std::array<int, ARRAY_SIZE> commands)
//                                                                        ^^^^^^^^
{
    // ...
}