gpt4 book ai didi

c - 当我尝试定义结构的元素时,我不断收到错误消息

转载 作者:太空宇宙 更新时间:2023-11-04 06:53:54 25 4
gpt4 key购买 nike

我正在自学 C。我按照教程操作并获得了一个可以在屏幕上四处移动的图像。现在我正在尝试自己做,并了解如何模块化我的代码并知道它发生了什么。

我构建了一个结构来获取玩家坐标并将其调用到我的 game_loop.h 文件中。但它不允许我从结构中设置变量。我试图只包括重要的部分以保持简洁。让我知道是否需要发布整个代码。我究竟做错了什么。

//includes
#include "game_loop.h"

//main body
int main( int argc, char *argv[])
{
//TODO make game menu and link it here

//TODO make game loop and put it here
initSDL();
renderGame();
handleEvent();

//make game cleanup and put it her
destroySDL();

return 0;
}

int 头文件 game_loop.h -->

#include <stdio.h>
#include <SDL2/SDL.h>
#include <SDL2/SDL_image.h>
#include "player.h"

#define pSIZE 64
#define wWIDTH 1280
#define wHEIGHT 720

//variables for starting SDL
SDL_Event event;
SDL_Window *window = NULL;
SDL_Renderer *render = NULL;

SDL_Surface *bgSurface = NULL;
SDL_Texture *bgTexture = NULL;

SDL_Surface *pSurface = NULL;
SDL_Texture *pTexture = NULL;

int flags = 0; //window flags may need to change in the future

struct Player player;
player.x = 600;
player.y = 300;

void initSDL()
{
//initializing SDL
if(SDL_Init(SDL_INIT_VIDEO)!= 0)
{
printf("ERROR starting SDL: %s\n", SDL_GetError());
}else{printf("Starting SDL: Successful.\n");}

在 player.h 文件中 -->

struct Player{
int x;
int y;
};

最佳答案

您在函数之外有几行可执行代码:

Player player;
player.x = 600;
player.y = 300;

第一行定义了一个变量。那没问题。接下来的两行不是,因为它们是语句。

您需要在定义结构时对其进行初始化。您可以按如下方式进行:

Player player = { 600, 300 };

此外,在头文件中定义变量也不是一个好主意。如果在多个源文件中使用一个 header ,您最终会因多个定义而出错。

在你的头文件中,变量应该被声明为 extern 而没有初始化:

extern Player player;

然后您可以将带有初始化器的定义完全放在一个源文件中。

与函数类似,将函数的声明放在头文件中,并将函数的定义放在一个源文件中。

关于c - 当我尝试定义结构的元素时,我不断收到错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47515585/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com