为什么对函数内部的指针所做的更改在函数外部不可见?

问题描述 投票:0回答:1

我正在实现一个喜欢的列表。有一个问题,当我在函数内部更改相同的指针时,则在函数外部不可见。

#include<bits/stdc++.h>
using namespace std;
//define

class List{
    public:
    int data;
    List *next;
    public:
        List(int n){
            this->data=n;
            this->next=NULL;
        }
};

void add(List *head,int data){
    List * nn = new List (data);
    head=nn;
}
// driver code
int main(){
    List *head=NULL;
    List * nn = new List (45);
    head=nn;
    cout<<head->data;
    return 0;
}

此代码打印45。

class List{
    public:
    int data;
    List *next;
    public:
        List(int n){
            this->data=n;
            this->next=NULL;
        }
};

void add(List *head,int data){
    List * nn = new List (data);
    head=nn;
}
// driver code
int main(){
    List *head=NULL;
    add(head,45);
    cout<<head->data;
    return 0;
}

此程序不打印任何内容。它只是崩溃了。

c++ pointers
1个回答
0
投票

此功能:

© www.soinside.com 2019 - 2024. All rights reserved.