C++程序问题,求指教错在哪

#include"stdafx.h"#include<iostream>#include<string>#defineNULL0usingnamespacestd;tem... #include "stdafx.h"
#include<iostream>
#include<string>
#define NULL 0
using namespace std;
template<class DataType>
struct Node
{
DataType data;
Node<DataType> *next;
};
template<class DataType>
class LinkList
{
public:
LinkList();
LinkList(DataType a[],int n);
private:
Node<DataType> *first;
};
template<class DataType>
LinkList<DataType>::LinkList(DataType a[],int n)
{
Node<DataType> *first,*s,*p;
first=new Node;first->next=NULL;
int i;
for(i=0;i<n;i++)
{
s= new Node;s->data=a[i];
s->next=first->next;first->next=s;
}
}
int _tmain(int argc, _TCHAR* argv[])
{
int b[3];
b[0]=2,b[1]=4,b[2]=6;
LinkList<int> a(b,3);
return 0;
}

我自学照着书上写的,可能很多地方都写的不对,我想调用那个构造函数,可是老是报错
错误 1 error C2955: “Node”: 使用类 模板 需要 模板 参数列表
错误 2 error C2512: “Node”: 没有合适的默认构造函数可用
错误 3 error C2512: “Node”: 没有合适的默认构造函数可用
展开
 我来答
df601562566
2013-10-14 · TA获得超过502个赞
知道小有建树答主
回答量:351
采纳率:100%
帮助的人:340万
展开全部
#include "stdafx.h"

#include<iostream>
#include<string>
#define NULL 0
using namespace std;

template<class DataType>

struct Node//改成class试试。struct没有默认构造函数,或者你自己加个构造函数。
 
{

DataType data;

Node<DataType> *next;

};

template<class DataType>

class LinkList

{

public:

LinkList();

LinkList(DataType a[],int n);

private:

Node<DataType> *first;

};

template<class DataType>

LinkList<DataType>::LinkList(DataType a[],int n)

{

Node<DataType> *first,*s,*p;

first=new Node;first->next=NULL;//Node是模版类,Node<DataType>

int i;

for(i=0;i<n;i++)

{

s= new Node;s->data=a[i];//Node是模版类,Node<DataType>

s->next=first->next;first->next=s;

}

}

int _tmain(int argc, _TCHAR* argv[])

{

int b[3];

b[0]=2,b[1]=4,b[2]=6;

LinkList<int> a(b,3);

return 0;

}

模板类必须要有参数列表,也就是使用的时候要有Node<参数列表>。

百度网友5c69cfc
2013-10-14 · TA获得超过238个赞
知道小有建树答主
回答量:325
采纳率:100%
帮助的人:226万
展开全部
template<class DataType>
class LinkList
{
public:
LinkList();
LinkList(DataType a[],int n);
private:
Node<DataType> *first;
}; // 这里的 ;改为半角 ;

// 两处 new Node 改为 new Node<DataType>
first=new Node;first->next=NULL; 
s= new Node;s->data=a[i];
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式