“错误C2059:语法错误:'if'”(Visual C ++ 2010 Professional)

时间:2012-12-29 12:14:17

标签: c++ syntax

在Google搜索之后,我发现在“if”之前我遗漏了一些东西。 据我所知,没有。 说真的,我在这里错过了什么? 我在第44行有这个错误,我清楚地有所有的括号和分号。

#include "Entity.h"
#include "string.h"
#include "surface.h"
#include "stdlib.h"
#include "template.h"
#include "SDL.h"
#include "game.h"
#include "Ghosts.h"
#include "Character.h"
#include "Tile.h"

using namespace Tmpl8;

Surface* Map = new Surface("assets/map.png");
Surface* Spook = new Surface("assets/ghost.png");
Surface* Player = new Surface("assets/char.png");
Sprite* Play = 0;
Invader Invaders[55];
Character c;

Tile* myTile = new Tile(96,96); //Define new tile.
Tile* tileArray[3000/96][3280/96]; //Define size total tiles.

TileProperties myTileset[2] = {
    {true,  0,  0}, //Tile 0 = solid wall, graphics at 0,0
    {true, 96,  0} //Tile 1 = open space, graphics at 96,0
};

const int MAP_WD = 5;
const int MAP_HT = 5;

int map[MAP_WD * MAP_HT] = {
    1,1,1,1,1,
    1,1,0,0,1,
    1,0,0,0,1,
    1,0,1,0,1,
    1,1,1,1,1
};

const TileProperties& GetTile(int x, int y) {
    return myTileset[map[(y*MAP_HT) + x]];
}

if (GetTile(c.Xpos, c.Ypos).Wall) { //Here's the trouble.

}

错误:

1>c:\nhtv\year 1\block b\pr2\f. gauntlet\game.cpp(44): error C2059: syntax error : 'if'
1>c:\nhtv\year 1\block b\pr2\f. gauntlet\game.cpp(44): error C2143: syntax error : missing ';' before '{'
1>c:\nhtv\year 1\block b\pr2\f. gauntlet\game.cpp(44): error C2447: '{' : missing function header (old-style formal list?)

2 个答案:

答案 0 :(得分:3)

“if”属于全球范围。你必须把它放在方法/函数中。

答案 1 :(得分:0)

您必须简单地将if放入某个功能中。在C / C ++中编写除函数外部的变量/数据结构/函数等声明之外的一些代码是非法的。