當使用存儲衆多對象的鏈接列表時,如何訪問所述對象中的數據?從鏈接列表中訪問對象(自定義實現)
示例代碼。
using namespace std;
typedef struct node
{
int data;
node* next;
} *nodePtr;
nodePtr head;
nodePtr current;
nodePtr temp;
void PrintList()
{
current = head;
while(current != NULL)
{
cout << current->data.getMakeModel();
cout << current->data.getRegNo();
cout << current->data.getEngineSize();
cout << current->data.getRented();
current=current->next;
}
}
我目前的做法不起作用,我不確定如何解決它。
我需要做的就是訪問模板對象的數據成員,我有getter方法和輸出數據。
任何想法?
在附註中,是否可以在鏈接列表中搜索特定對象(具有特定數據成員值的對象)?仍然使用模板的對象當然是