【发布时间】:2015-02-11 21:03:05
【问题描述】:
嘿,我已经构建了一个类来存储一些信息作为类的静态成员。 在编译时我得到了错误:
错误:“class Config”中的“cubeLength”没有命名类型
错误:‘class Config’中的‘cellColor’没有命名类型
Config.h 的内容
#ifndef CONFIG_H
#define CONFIG_H
#include <SFML/Graphics.hpp>
class Config {
public:
static float cubeLength ;
static sf::Color cellColor;
private:
Config();
Config(const Config& orig);
};
Config::cubeLength = 10.f; //error thrown here
Config::cellColor = sf::Color::Magenta; //error thrown here
#endif /* CONFIG_H */
我在 Linux 上使用 GNU 编译器。 请帮帮我
【问题讨论】: