Ошибка неклассного типа в переполнении стека

Мне нужна помощь с программой на C ++, над которой я работаю.

Я беру урок по операционным системам, поэтому наши первые несколько недель были ускоренным курсом по программированию на C, но теперь мы должны обновить нашу C-программу до C ++. Мой профессор показал нам несколько примеров кода и показал нам несколько учебных пособий, но они дошли до меня до сих пор.

Мы используем файл заголовка, файл .cpp для реализации функций и тестовый файл (отсюда мои ошибки.

//dll.h

#ifndef _DLL_H
#define _DLL_H
using namespace std;
#include <iostream>
#include <string>

class dll{
public:
typedef struct _Node
{

struct _Node *pNode;
struct _Node *nNode;
int nodeValue;

}sNode;

typedef struct
{

sNode first;

}DLList;

dll();
~dll();
void init(DLList *DLL,int d);
void sort(DLList *DLL);
void print(DLList *DLL);

};

#endif

Основной файл .cpp:

//dll.cpp

using namespace std;
#include <iostream>
#include <string>
#include <stdio.h>
#include <cstdlib>
#include "dll.h"
dll::dll(){

cout<<"Constructor called"<<endl;

}

dll::~dll(){

cout<<"Destructor called"<<endl;

}

void dll::init(DLList *DLL, int d)
{

sNode *node;
sNode *pNode;
pNode = &(DLL-> first);
pNode->pNode = NULL;
int i;
for(i=0; i<d; i++)
{

node = (sNode*) malloc(sizeof(node));
node-> nodeValue = rand();
node-> pNode = pNode;
node-> nNode = NULL;
pNode-> nNode = node;
pNode = node;

}

}

void dll::print(DLList *DLL)
{

int i= 1;
sNode *nNode = DLL-> first.nNode;
while(nNode != NULL)

{

cout<<("%d.  %d\n",i,nNode-> nodeValue);
cout<<("");
nNode = nNode-> nNode;
i++;

}

}

void dll::sort(DLList *DLL)
{

int change = 1;
while(change== 1)

{

change = 0;
sNode *current = DLL-> first.nNode;
while(current-> nNode != NULL)

{

if(current-> nodeValue > current-> nNode-> nodeValue)
{

int temp = current-> nodeValue;
current-> nodeValue = current-> nNode-> nodeValue;
current-> nNode-> nodeValue = temp;
change = 1;

}

current = current-> nNode;
}

}

}

Теперь тестовый файл, где моя ошибка продолжает появляться:

//testDLL.cppusing namespace std;
#include <iostream>
#include <string>
#include <stdio.h>
#include <cstdlib>
#include "dll.h"
int main()
{

cout<<("Doubly Linked List before sorting: \n");
dll::DLList DLL;
dll *test =  new dll();
test.dll::init(&DLL,5);
test.dll::print(&DLL);
test.dll::sort(&DLL);
cout<<("\nDoubly Linked List after sorting: \n");
test.dll::print(&DLL);
return 0;
}

Поскольку программа написана сейчас, я продолжаю сталкиваться с этим каждый раз, когда пытаюсь скомпилировать (используя g ++ в командной строке linux):

testDLL.cpp: In function ‘int main()’:
testDLL.cpp:17:7: error: request for member ‘init’ in ‘test’, which is of non-class type ‘dll*’
testDLL.cpp:19:12: error: request for member ‘dll:: print’ in ‘test’, which is of non-class type ‘dll*’
testDLL.cpp:21:12: error: request for member ‘dll:: sort’ in ‘test’, which is of non-class type ‘dll*’
testDLL.cpp:25:12: error: request for member ‘dll:: print’ in ‘test’, which is of non-class type ‘dll*’

Я полностью озадачен этим, поэтому любая помощь, которую вы, ребята, можете оказать мне, будет принята с благодарностью.

-1

Решение

Если вы используете dll в качестве указателя объявление является правильным.

dll* test = new dll();

Если вы используете dll в качестве объекта декларация должна быть:

dll test;

Это приведет к автоматическому вызову конструктора и деструктора.

Если вы используете dll в качестве указателя на вызов init должно быть (вам не нужно проверять NULL, но это поможет предотвратить сбой вашей программы):

if (dll != NULL) {
dll->init(&DLL, 5);
}

Если вы используете dll как объект, вызов init должно быть:

 dll.init(&DLL, 5);
0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]