2

When i try to compile my header file, the compiler tells me " 'map' was not declared in this scope" ( the line below public: ). Why?

#pragma once
#include <SFML/Graphics.hpp>
#include <iostream>
#include <fstream>
#include <cctype>
#include <string>
#include <vector>
#ifndef TILEMAP_H
#define TILEMAP_H

class TileMap{

public:
    std::vector<std::vector<sf::Vector2i>> map;
    std::ifstream file;
    TileMap(std::string name);
    sf::Sprite tiles;
    sf::Texture tileTexture;
    void update();
    void draw(sf::RenderWindow* window);



};

#endif
4

1 回答 1

6

两个“>”之间应该有一个空格,否则编译器会将其与“>>”运算符混淆。所以这样做:

std::vector<std::vector<sf::Vector2i> > map;

这就是为什么如果您想在另一个中使用 STL 类型,那么对 STL 类型进行 typedef 总是一个好主意。所以最好这样做:

typedef std::vector<sf::Vector2i> Mytype;
std::vector<Mytype> map;

这样您就不会因为忘记在“>”之间放置空格而出现编译错误。

于 2013-09-04T23:34:40.470 回答