免费注册 查看新帖 |

Chinaunix

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

how to determine class type in template defintion [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-04-10 04:14 |只看该作者 |倒序浏览
Problem is how to implement the following:

template<class T>; class t {
    T a_function(T x, T y) {
        // if T is class A
        // return function_for_A(x, y);
        // if T is class B
        // return function_for_B(x, y);
    }
}

Some libraries like BLAS/LAPACK use different function name for different data types doing the same thing (function_for_A and function_for_B in above), i.e. there is no overloading.  I want to build a template class to overload these functions.  Is this possible?

Thanks for reply and suggestions.

论坛徽章:
0
2 [报告]
发表于 2005-04-10 13:52 |只看该作者

how to determine class type in template defintion

通过WRAPPER实现的方法如下:
TEMPLATE  <CLASS T>;
CLASS VirtualBase {
  PUBLIC:
     VIRTUAL T  A_FUNCTION(T x, T y)=0;
  ...
};

TEMPLATE <CLASS T>;
CLASS WrapperA: PUBLIC VirtualBase<CLASS T>;
{
  PUBLIC:
    T A_FUNCTION(T x, T y) {  RETURN function_for_A(x, y); }
  ...
};


TEMPLATE <CLASS t>;
CLASS WrapperB: PUBLIC VirtualBase<CLASS T>;
{
  PUBLIC:
    T A_FUNCTION(T x, T y) {  RETURN function_for_B(x, y); }
  ...
};

论坛徽章:
0
3 [报告]
发表于 2005-04-10 21:30 |只看该作者

how to determine class type in template defintion

Thanks a lot.

But I am afraid this is not what I want, because in instantiating the objects I would have to use (if I am not wrong):

e.g.,
WrapperA<float>; f;
WrapperB<double>; d;

what I want is:
t<float>; f;
t<double>; d;

and the function a_function should work respectively for double and float.

论坛徽章:
0
4 [报告]
发表于 2005-04-10 21:30 |只看该作者

how to determine class type in template defintion

Thanks a lot.

But I am afraid this is not what I want, because in instantiating the objects I would have to use (if I am not wrong):

e.g.,
WrapperA<float>; f;
WrapperB<double>; d;

what I want is:
t<float>; f;
t<double>; d;

and the function a_function should work respectively for double and float.

论坛徽章:
0
5 [报告]
发表于 2005-04-11 09:03 |只看该作者

how to determine class type in template defintion

摸版类的特殊华可以实现你的需求.
不过这样失去了使用摸版的意义.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP