| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 668 人关注过本帖
标题:请求各位一个问题
取消只看楼主 加入收藏
cavinlu
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2005-9-24
收藏
 问题点数:0 回复次数:3 
请求各位一个问题

const int MaxVertexes=20; template<class vertexType,class arcType> class Graph; template<class arcType>class ArcNode{ friend class Graph<vertexType,arcType>; private: int adjvex; arcType weight; ArcNode<arcType>*nextarc; ArcNode(){} ArcNode(int v,arcType w):adjvex(v),weight(w),nextarc(NULL){} };

template<class vertexType,class arcType>class VertexNode{ friend class Graph< vertexType,arcType>; private: vertexType data; ArcNode<arcType>*firstarc; }; Compiling... AdjcentTable.cpp D:\AdjcentTable\AdjcentTable.cpp(4) : error C2065: 'vertexType' : undeclared identifier D:\AdjcentTable\AdjcentTable.cpp(11) : see reference to class template instantiation 'ArcNode<arcType>' being compiled 请问上述程序到底错在那里,我找了半天没啥错啊? 多谢了

搜索更多相关主题的帖子: 请求 
2005-10-01 15:46
cavinlu
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2005-9-24
收藏
得分:0 
为啥没人回答我啊?

难道这问题很难吗?

恳请各位帮帮我啊!

多谢了
2005-10-02 21:31
cavinlu
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2005-9-24
收藏
得分:0 
感谢楼上高手指点!

请问
template&lt;class vertexType,class arcType&gt; class Graph;

如果我不加class vertexType;为啥会错呢?

这个问题很怪啊,我觉得!模板我设定两个参数为啥会错呢?

恳请高手指点,多谢了!
2005-10-03 12:35
cavinlu
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2005-9-24
收藏
得分:0 
非常感谢版主详尽的解答! 可我还是有些不明白: template<class vertexType,class arcType> class Graph; 我在上面先声明了Graph类,并在模板类中预设了两个参数:vertexType 和 arcType 一个用来保存顶点信息,一个用来保存边信息 随后我又声明: template<class arcType>class ArcNode{ friend class Graph<vertexType,arcType>; //请您注意这句 private: int adjvex; arcType weight; ArcNode<arcType>*nextarc; ArcNode(){} ArcNode(int v,arcType w):adjvex(v),weight(w),nextarc(NULL){} }; 我的确在ArcNode类的声明前先声明了Graph类,并设Graph类为ArcNode的友元, 为社么编译器会说vertexType没有定义过呢? 都晕啊! 望各位高人指点迷津啊
2005-10-03 17:09
快速回复:请求各位一个问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.021794 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved