c - 初始化指向结构体指针的指针

标签 c pointers struct pointer-to-pointer

我有一个基于控制台的应用程序,其中我使用指向指针的指针。这是扫雷游戏,我需要使用指向指针的指针创建棋盘。我必须将 this 指针传递给指向函数的指针以进行初始化。但问题是,它在函数中进行了初始化,但我无法在主函数中访问。我尝试使用通过引用/地址传递。如果有人能帮助我,我将不胜感激。

谢谢

    #include <stdlib.h>
#include<stdio.h>

#define MINE 0
#define FLAG 1
#define REVEALED 2

struct Location {
    int value;
    char status_byte;
};

struct Game {
    int width;
    int height;
    int mines;
    int mines_flagged;
    int flags;
};

int mine_clicked = 1;

int board_width;
int board_height;

int total_mines;


void initialize_mine_values(struct Game *game, struct Location** mine_board);

void main() {
    struct Game game;
    struct Location** mine_board = NULL;


    //Location actualThing;
    //Location *pointer = &actualThing;
//  Location **mine_board = &pointer;

    printf("\t** Student_number Student_name Assignment 3** \n");

    initialize_mine_values(&game, &(*mine_board));

    printf("game.width  : %d", game.width);

    //test//
    /*for (int i = 0; i < game.width + 2; i++)
    {
    for (int j = 0; j < game.height + 2; j++)
    {
    mine_board[i][j].value = 12;
    }
    }
    */
    for (int i = 0; i < game.width + 2; i++)
    {
        for (int j = 0; j < game.height + 2; j++)
        {
            printf("\n %d %d", i, j);
            //   Location l = mine_board[i][j];
            printf(" , here it is location value %d", mine_board[i][j].value);
        }
    }
    //test end



    scanf("%d", &board_height);
    getchar();

}
void initialize_mine_values(struct Game *game1, struct Location** mine_board)
{
    //mines_flagged and flag is set to 0
    game1->flags = 0;
    game1->mines_flagged = 0;

    //take width of the game board
    printf("\nEnter the width of the board");
    scanf("%d", &(game1->width));


    printf("\nEnter the height of the board");
    scanf("%d", &(game1->height));


    do {
        printf("Enter total number of mines for the game, Number of mines should be less than %d ", game1->width*game1->height);
        scanf("%d", &total_mines);
    } while (total_mines >= game1->width*game1->height);


    //initializing mine board

    mine_board = (Location**)malloc(sizeof(Location*) * (game1->height + 2));
    // mine_board[0] = (struct Location*)malloc(sizeof(struct Location) * (game1->width + 2) * (game1->height + 2));


    for (int i = 0; i < game1->height + 2; i++) {
        mine_board[i] = (struct Location*)malloc(sizeof(struct Location)* (game1->width + 2));
    }
    for (int i = 0; i < game1->width + 2; i++)
    {
        for (int j = 0; j < game1->height + 2; j++)
        {
            mine_board[i][j].value = i+j;
        }
    }

    for (int i = 0; i < game1->width + 2; i++)
    {
        for (int j = 0; j < game1->height + 2; j++)
        {
            printf("\n %d %d", i, j);
            //   Location l = mine_board[i][j];
            printf(" , here it is location value %d", mine_board[i][j].value);
        }
    }


}

最佳答案

您需要将要在函数内更改的变量的地址传递给函数。

在您的情况下,这是传递 &mine_board 。此外,您还需要相应地调整函数以获取 &main_board 的计算结果。由于main_boardstruct Location**,也就是struct Location*** pmine_board

在分配函数内然后使用

*pmine_board = malloc( ....

(*pmine_board)[i] = malloc( ...

(*pmine_board)[i][j].value = ...
<小时/>

除此之外

  • 放弃所有那些无用的 Actor
  • 为那些可能失败的函数添加错误检查(和处理)(例如 malloc())

关于c - 初始化指向结构体指针的指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43963701/

相关文章:

c - 将内核模块与用户空间程序通信的最佳方式是什么?

没遇到过的C错误

C pthread,指针丢失内容

c - C 中的位域和 union 会出现问题

c++ - c++ 17 中结构自动定义构造函数的规则是什么?

你能扭转总数吗? (循环C)

c - 添加用户空间头文件以生成文件

c - 在 Linux C 中交替同步两个进程

c - 从枚举 * 到枚举的不兼容赋值

objective-c - 从自定义结构中找出函数参数?