由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 定义linked list最后一行什么意思?
相关主题
one question about struct不明白C++的一个地方
问一个简单的binary tree 问题one more interview question
这段C++程序有错吗?about struct and class in c++
how to destruct list with loop?C++ Q09: delete dynamic array
问个构造函数的问题What does the default constructor do?
[合集] C# 面试问题讨论What is the difference between class and struct?
C++菜鸟问题请教: class versus structure.C calls C++ library
The C++ questions I've been askedc++ initialize struct
相关话题的讨论汇总
话题: num话题: node话题: null话题: next话题: struct
进入Programming版参与讨论
1 (共1页)
g****e
发帖数: 172
1
一般好像没有。
struct node {
int num;
node* next;
node(int _num):num(_num),next(NULL) {} //what does this mean?
};
X****r
发帖数: 3557
2
It defines a constructor that initializes 'num' with the given
value and 'next' with NULL.

【在 g****e 的大作中提到】
: 一般好像没有。
: struct node {
: int num;
: node* next;
: node(int _num):num(_num),next(NULL) {} //what does this mean?
: };

w*********u
发帖数: 392
3
不就是指向下一个list item的指针么
c*********e
发帖数: 16335
4
constructor.
一般struct用来定义node 的data和指向下一个node的指针。这个有点特别,加了
constructor.

【在 g****e 的大作中提到】
: 一般好像没有。
: struct node {
: int num;
: node* next;
: node(int _num):num(_num),next(NULL) {} //what does this mean?
: };

b*******s
发帖数: 5216
5
c++里面struct和class是内存布局差不多的东西,区别很小

【在 c*********e 的大作中提到】
: constructor.
: 一般struct用来定义node 的data和指向下一个node的指针。这个有点特别,加了
: constructor.

E6
发帖数: 105
6
难道有区别?

【在 b*******s 的大作中提到】
: c++里面struct和class是内存布局差不多的东西,区别很小
n*****3
发帖数: 1584
7
if you think of inheritance.

【在 E6 的大作中提到】
: 难道有区别?
C***y
发帖数: 2546
8
我就知道struct是默认public的class
还不知道有其他区别
展开说说?

【在 n*****3 的大作中提到】
: if you think of inheritance.
Iw
发帖数: 151
9
public inheritance
for memory layout I don't think there is any difference

【在 C***y 的大作中提到】
: 我就知道struct是默认public的class
: 还不知道有其他区别
: 展开说说?

1 (共1页)
进入Programming版参与讨论
相关主题
c++ initialize struct问个构造函数的问题
C++ Q01: private inheritance.[合集] C# 面试问题讨论
Three C/C++ Programming QuestionsC++菜鸟问题请教: class versus structure.
菜鸟读C++ STL源程序的疑问The C++ questions I've been asked
one question about struct不明白C++的一个地方
问一个简单的binary tree 问题one more interview question
这段C++程序有错吗?about struct and class in c++
how to destruct list with loop?C++ Q09: delete dynamic array
相关话题的讨论汇总
话题: num话题: node话题: null话题: next话题: struct