- 论坛徽章:
- 0
|
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$ |
|