4

我对 C++ 有点陌生,所以我正在制作一个文本 RPG 之类的东西来测试我学到的东西。我想让它提示玩家输入他们三个角色中每个角色的职业(法师、战士、弓箭手等)。

字符类存储在称为 cls[] 的静态整数数组中。我宁愿保持静态而不是这个类的对象,因为游戏中的几乎所有东西都会尝试访问该类的成员。但由于某种原因,它一直给我错误消息:未定义对 `playerVars::cls' 的引用。我猜这意味着它找不到数组或什么?我真的很感激任何可以阐明这个主题的信息。

intro.h
-----------------------------
#ifndef INTRO_H
#define INTRO_H
#include <iostream>

using namespace std;

class intro
{
    public:
        intro();
        int inint;
        void classDecide(int charUsed);
};

#endif


intro.cpp
-----------------------------
#include "intro.h"
#include "playerVars.h"

intro::intro()
{
    classDecide(0); //Calls the classDecide function using your first of 3 characters
}

void intro::classDecide(int charUsed)
{
    cin >> inint;   //Asks for the number of the class that you want
    playerVars::setClass(charUsed,inint);
}


playerVars.h
-----------------------------
#ifndef PLAYERVARS_H
#define PLAYERVARS_H

using namespace std;

class playerVars
{
    public:
        playerVars();
        static int cls[3];
        static void setClass(int classToSet, int setTo);
};

#endif


playerVars.cpp
-----------------------------
#include "playerVars.h"

playerVars::playerVars()
{
}

void playerVars::setClass(int classToSet, int setTo)
{
    cls[classToSet]=setTo;  //sets the class of player classToSet to setTo
            //undefined reference to `playerVars::cls'
}
4

1 回答 1

2

添加这个

int playerVars::cls[3] = {0};

到 playerVars.cpp

于 2013-05-30T17:31:19.900 回答