gpt4 book ai didi

c++ - ->(指向成员)运算符的作用是什么?

转载 作者:行者123 更新时间:2023-11-30 00:36:05 25 4
gpt4 key购买 nike

我有一个链表程序,其中我看到了很多 -> 运算符,但我不知道它们是做什么的。我在这里和那里搜索了它们,但我发现的只是它指向成员运算符并且它做了一些事情(我不完全理解什么和为什么)。这是链接列表中的代码片段,你能向我解释一下这个运算符是如何工作的吗?

#include <iostream>
using namespace std;
template<class T>
class List{
struct Element{
T data_;
Element* next_;
Element* prev_;

Element(T val)
:data_(val),
next_(NULL),
prev_(NULL)
{}

};
Element* head_;

这就是我正在使用的结构,下面是一个简单的 push_back 函数。

void push_back(T val){
Element* newElement = new Element(val);
Element* back = head_->prev_;

back->next_ = newElement;
newElement->prev_ = back;

newElement->next_ = head_;
head_->next_ = newElement;
}

int main(){
List<int> l;
l.push_back(40);

return 0;
}

示例将不胜感激。

最佳答案

默认情况下,-> 运算符是取消引用指针和访问成员的简写。C例如,给定声明 Element* back,则 back->next 等同于 (*back).next

编辑:

摘自 Kernighan 和 Ritchie 的 “C 编程语言”:

Pointers to structures are so frequently used that an alternative notation is provided as a shorthand. If p is a pointer to a structure, then

p->member-of-structure

refers to the particular member.

关于c++ - ->(指向成员)运算符的作用是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17011102/

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