| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 390 人关注过本帖
标题:[求助]关于类模板的问题
只看楼主 加入收藏
return
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2006-4-18
收藏
 问题点数:0 回复次数:1 
[求助]关于类模板的问题

我的代码:
#include <iostream>
using namespace std;

template <class numtype>
class Compare{
public:
Compare(numtype a, numtype b)
{ x = a; y = b}

numtype max()
{ return (x>y)?x:y }

numtype min()
{ return (x<y)?x:y }
private:
numtype x,y;
};

int main(){
Compare <int> cmp1(19,20);
cout<<"cmp1 max="<<cmp1.max()<<" min="<<cmp1.min()<<endl;
return 0;
}

编译的错误信息:
error C2143: syntax error : missing ';' before '}'
while compiling class-template member function '__thiscall Compare<int>::Compare<int>(int,int)'

搜索更多相关主题的帖子: 模板 
2006-04-18 09:49
gototheworld
Rank: 1
等 级:新手上路
帖 子:218
专家分:0
注 册:2006-3-24
收藏
得分:0 
以下是引用return在2006-4-18 9:49:00的发言:

我的代码: 小错误,以后要注意了
#include <iostream>
using namespace std;

template <class numtype>
class Compare{
public:
Compare(numtype a, numtype b)
{ x = a; y = b}

numtype max()
{ return (x>y)?x:y ;}

numtype min()
{ return (x<y)?x:y ;}
private:
numtype x,y;
};

int main(){
Compare <int> cmp1(19,20);
cout<<"cmp1 max="<<cmp1.max()<<" min="<<cmp1.min()<<endl;
return 0;
}


路漫漫其修远兮 吾将上下而求索
2006-04-18 09:59
快速回复:[求助]关于类模板的问题
数据加载中...
 
   



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

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