为了账号安全,请及时绑定邮箱和手机立即绑定

如何修改传递给C中函数的指针?

如何修改传递给C中函数的指针?

C++ C
慕慕森 2019-06-11 13:46:19
如何修改传递给C中函数的指针?因此,我有一些代码,类似于下面的代码,可以将结构添加到结构列表中:void barPush(BarList * list,Bar * bar){     // if there is no move to add, then we are done     if (bar == NULL) return;//EMPTY_LIST;     // allocate space for the new node     BarList * newNode = malloc(sizeof(BarList));     // assign the right values     newNode->val = bar;     newNode->nextBar = list;     // and set list to be equal to the new head of the list     list = newNode; // This line works, but list only changes inside of this function}这些结构的定义如下:typedef struct Bar{     // this isn't too important} Bar;#define EMPTY_LIST NULLtypedef struct BarList{     Bar * val;     struct  BarList * nextBar;} BarList;然后在另一个文件中执行如下操作:BarList * l;l = EMPTY_LIST;barPush(l,&b1); // b1 and b2 are just Bar'sbarPush(l,&b2);但是,在此之后,l仍然指向空_list,而不是barPush内部创建的修改版本。如果我想修改一个指针,是否必须将列表作为指针传入,还是需要使用其他暗咒语?
查看完整描述

3 回答

?
函数式编程

TA贡献1807条经验 获得超9个赞

如果要这样做,则需要传入指向指针的指针。

void barPush(BarList ** list,Bar * bar){
    if (list == NULL) return; // need to pass in the pointer to your pointer to your list.

    // if there is no move to add, then we are done
    if (bar == NULL) return;

    // allocate space for the new node
    BarList * newNode = malloc(sizeof(BarList));

    // assign the right values
    newNode->val = bar;
    newNode->nextBar = *list;

    // and set the contents of the pointer to the pointer to the head of the list 
    // (ie: the pointer the the head of the list) to the new node.
    *list = newNode; }

然后像这样使用它:

BarList * l;l = EMPTY_LIST;barPush(&l,&b1); // b1 and b2 are just Bar'sbarPush(&l,&b2);

乔纳森·莱弗勒(JonathanLeffler)建议将评论中的新头目返回:

BarList *barPush(BarList *list,Bar *bar){
    // if there is no move to add, then we are done - return unmodified list.
    if (bar == NULL) return list;  

    // allocate space for the new node
    BarList * newNode = malloc(sizeof(BarList));

    // assign the right values
    newNode->val = bar;
    newNode->nextBar = list;

    // return the new head of the list.
    return newNode; }

用法如下:

BarList * l;l = EMPTY_LIST;l = barPush(l,&b1); // b1 and b2 are just Bar'sl = barPush(l,&b2);


查看完整回答
反对 回复 2019-06-11
?
猛跑小猪

TA贡献1858条经验 获得超8个赞

一般答案:传递指向要更改的内容的指针。

在这种情况下,它将是指向要更改的指针。


查看完整回答
反对 回复 2019-06-11
?
幕布斯6054654

TA贡献1876条经验 获得超7个赞

记住,在C中,一切都是通过值传递的。

传入指向指针的指针,如下所示

int myFunction(int** param1, int** param2) {// now I can change the ACTUAL pointer - kind of like passing a pointer by reference }


查看完整回答
反对 回复 2019-06-11
  • 3 回答
  • 0 关注
  • 622 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信