📄 listnode.h
字号:
//ECE106 Lab#5//Name: Mo Li//Student#: 995447379//Date:Mar.09,2007#ifndef _LISTNODE_H#define _LISTNODE_H#include "studentRec.h"class listNode {private: studentRecord* student; listNode* next;public: // the default constructor listNode(studentRecord* _student); // the destructor ~listNode(); // sets the next child of the listNode. void setNext(listNode* nextptr); // returns the next field. listNode* getNext() const; // returns a pointer to the student record the listNode contains. studentRecord* getStudentRec() const;}; //listNode#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -