免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 5892 | 回复: 10
打印 上一主题 下一主题

[C++] 模板的问题二 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-07-07 21:38 |只看该作者 |倒序浏览
本帖最后由 sunguangshou 于 2011-08-01 22:12 编辑

请大家帮我分析一下下面的这些错误,谢谢。

appadm@xpangxie:~/class$ g++ -o listsun listsun.cpp
listsun.cpp: In function 'int main()':
listsun.cpp:25: error: missing template arguments before 'test'
listsun.cpp:25: error: expected `;' before 'test'
listsun.cpp:26: error: 'test' was not declared in this scope
appadm@xpangxie:~/class$ less -N listsun.cpp
      1 #include <iostream>
      2
      3 using namespace std;
      4 template <class T> class listsun{
      5     public:
      6         listsun(T& t);
      7         void Add(T& t);
      8     protected:
      9         struct Node{
     10             Node* pNext;
     11             T* pT;
     12         };
     13         Node * pFrist;
     14 };
     15
     16 template <class T> listsun<T>::listsun(T& t){
     17     pFrist=NULL;
     18 }
     19
     20 template <class T> void listsun<T>::Add(T& t){
     21     cout << "ssssssssssssss" <<endl;
     22 }
     23
     24 int main(){
              int i=1;//增加的代码。   
   25     listsun <int> test(i);
     26     test.Add(i);
     27     return 0;
     28
     29 }

上边的代码已经编辑好了。
(END)

论坛徽章:
324
射手座
日期:2013-08-23 12:04:38射手座
日期:2013-08-23 16:18:12未羊
日期:2013-08-30 14:33:15水瓶座
日期:2013-09-02 16:44:31摩羯座
日期:2013-09-25 09:33:52双子座
日期:2013-09-26 12:21:10金牛座
日期:2013-10-14 09:08:49申猴
日期:2013-10-16 13:09:43子鼠
日期:2013-10-17 23:23:19射手座
日期:2013-10-18 13:00:27金牛座
日期:2013-10-18 15:47:57午马
日期:2013-10-18 21:43:38
2 [报告]
发表于 2011-07-07 22:35 |只看该作者
25行,没有为listsun指定模板参数呀

论坛徽章:
0
3 [报告]
发表于 2011-07-08 11:10 |只看该作者
编译器无法自动推导出类的模板参数。如果你真想这么用,可以参数化构造函数。具体实现可以参考boost::any

论坛徽章:
0
4 [报告]
发表于 2011-07-09 12:29 |只看该作者
25行,没有为listsun指定模板参数呀
hellioncu 发表于 2011-07-07 22:35


#修改后#
      1 #include <iostream>
      2
      3 using namespace std;
      4 template <class T> class listsun{
      5     public:
      6         listsun(T& t);
      7         void Add(T&);
      8     protected:
      9         struct Node{
     10             Node* pNext;
     11             T* pT;
     12         };
     13         Node * pFrist;
     14 };
     15
     16 template <class T> listsun<T>::listsun(T& t){
     17     pFrist=NULL;
     18 }
     19
     20 template <class T> void listsun<T>::Add(T& t){
     21     cout << "ssssssssssssss" <<endl;
     22 }
     23
     24 int main(){
     25     listsun <int> test= new listsun(1);
     26     test.Add(1);
     27     return 0;
     28
     29 }
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
appadm@xpangxie:~/class$ g++ -o listsun listsun.cpp
listsun.cpp: In function 'int main()':
listsun.cpp:25: error: expected type-specifier before 'listsun'
listsun.cpp:25: error: conversion from 'int*' to non-scalar type 'listsun<int>' requested
listsun.cpp:25: error: expected ',' or ';' before 'listsun'
listsun.cpp:26: error: no matching function for call to 'listsun<int>::Add(int)'
listsun.cpp:20: note: candidates are: void listsun<T>::Add(T&) [with T = int]
appadm@xpangxie:~/class$

论坛徽章:
324
射手座
日期:2013-08-23 12:04:38射手座
日期:2013-08-23 16:18:12未羊
日期:2013-08-30 14:33:15水瓶座
日期:2013-09-02 16:44:31摩羯座
日期:2013-09-25 09:33:52双子座
日期:2013-09-26 12:21:10金牛座
日期:2013-10-14 09:08:49申猴
日期:2013-10-16 13:09:43子鼠
日期:2013-10-17 23:23:19射手座
日期:2013-10-18 13:00:27金牛座
日期:2013-10-18 15:47:57午马
日期:2013-10-18 21:43:38
5 [报告]
发表于 2011-07-09 14:16 |只看该作者
#修改后#
      1 #include
      2
      3 using namespace std;
      4 template  class lis ...
sunguangshou 发表于 2011-07-09 12:29



            int i = 1;
        listsun <int> test(i);//= new listsun(1);
        test.Add(i);

论坛徽章:
0
6 [报告]
发表于 2011-07-09 14:53 |只看该作者
int i = 1;
        listsun  test(i);//= new listsun(1);
        test.Add(i);
hellioncu 发表于 2011-07-09 14:16


什么时候开始泡技术版了

论坛徽章:
0
7 [报告]
发表于 2011-07-09 15:28 |只看该作者
int i = 1;
        listsun  test(i);//= new listsun(1);
        test.Add(i);
hellioncu 发表于 2011-07-09 14:16


谢谢,安你说的做可以了。
为什么一定要定义int i;而直接用1不行?请高手不吝赐教。

论坛徽章:
324
射手座
日期:2013-08-23 12:04:38射手座
日期:2013-08-23 16:18:12未羊
日期:2013-08-30 14:33:15水瓶座
日期:2013-09-02 16:44:31摩羯座
日期:2013-09-25 09:33:52双子座
日期:2013-09-26 12:21:10金牛座
日期:2013-10-14 09:08:49申猴
日期:2013-10-16 13:09:43子鼠
日期:2013-10-17 23:23:19射手座
日期:2013-10-18 13:00:27金牛座
日期:2013-10-18 15:47:57午马
日期:2013-10-18 21:43:38
8 [报告]
发表于 2011-07-09 16:03 |只看该作者
谢谢,安你说的做可以了。
为什么一定要定义int i;而直接用1不行?请高手不吝赐教。
sunguangshou 发表于 2011-07-09 15:28



    void Add(T&);
你自己定义的是引用

论坛徽章:
0
9 [报告]
发表于 2011-07-09 21:53 |只看该作者
麻烦代码编辑一下嘛

论坛徽章:
0
10 [报告]
发表于 2011-08-01 22:00 |只看该作者
麻烦代码编辑一下嘛
boyhailong 发表于 2011-07-09 21:53



代码已经编辑好了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP