C ++中的非类型错误

时间:2013-02-10 22:53:38

标签: c++ compiler-errors g++ non-type

我需要一些我正在研究的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.cpp


using 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;
} 

现在编写程序时,每次尝试编译时都会遇到这种情况(在linux命令行中使用g ++):

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 个答案:

答案 0 :(得分:0)

如果您使用dll作为指针,则声明是正确的。

dll* test = new dll();

如果您使用dll作为对象,则声明应为:

dll test;

这将导致构造函数和析构函数自动调用。

如果您使用dll作为指针,则应调用init(您不必检查NULL,但它有助于防止程序崩溃):

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

如果您使用dll作为对象,则对init的调用应为:

 dll.init(&DLL, 5);