gpt4 book ai didi

c++ - 通过指针初始化的字段有问题

转载 作者:太空宇宙 更新时间:2023-11-04 11:46:32 24 4
gpt4 key购买 nike

我的问题涉及以下功能:

/*Adds the transaction to the head of the linked list attached to the account.*/
void Bank::Worker::UpdateTransactionHistory(int account_number, string transaction, Bank *our_bank_ptr) {

transaction_node new_trans;
new_trans.transaction = transaction;

if (our_bank_ptr->accounts[account_number].head == nullptr) { //If this is the first transaction
our_bank_ptr->accounts[account_number].head = &new_trans;

} else { //If this isn't the first transaction, disconnect the account from its current transaction list, connect the new transaction to the account and then connect the old list to the new transaction.
transaction_node temp;
temp = *(our_bank_ptr->accounts[account_number].head);

our_bank_ptr->accounts[account_number].head = &new_trans;

new_trans.next = &temp;
}

if (our_bank_ptr->accounts[account_number].head) //here the correct string is printed
cout << our_bank_ptr->accounts[account_number].head->transaction;
}

它意味着更新 new_trans 的交易字段,然后将其链接到给定帐户的交易列表的其余部分。就在我从更新事务函数返回之前,我测试以确保正确添加了字符串。该函数的最后一行是 cout << our_bank_ptr->accounts[account_number].head->transaction; , 正确输出交易字符串。

但是,当我从函数返回并立即调用完全相同 的代码行时,编译器告诉我函数更新的事务字段仍未初始化。尽管事实上它是作为指针传入的。

什么鬼!?我认为如果我通过指针将信息传递给函数,那么我在函数过程中对该信息所做的任何操作都是永久性的?我在这里缺少什么?

感谢您的帮助,

亚当

最佳答案

您正在将指针设置为指向局部变量 (new_trans)。一旦函数退出,这个变量就会被销毁,指针就会悬空。所以试图取消引用它会导致未定义的行为。在您的情况下,这当前表现为单元化打印。但它可以做任何其他事情。

如果您在那里需要指针,并且需要它们指向持久值,则必须动态分配这些值。但真正的问题是:您需要指点吗?

关于c++ - 通过指针初始化的字段有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19661284/

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