当前位置:  开发笔记 > 编程语言 > 正文

如何使现有的类成为类模板?

如何解决《如何使现有的类成为类模板?》经验,为你挑选了1个好方法。

例如,我有几个现有的2D(二维)和3D情况的点类,比如class Point2Dclass Point3D.我希望它是模板像template class Point这里Point<2>相当于或直接使用Point2DPoint<3>等同于或直接使用Point3D.我不想重新实现那些现有的类,因为我的真正的类不像类点那么简单,它是第三方代码,比如

using Point<2> = Point2D;
using Point<3> = Point3D;

有办法吗?



1> Quentin..:

当然!不要修改类,而是添加typedef:

template 
struct pointType_;

template <>
struct pointType_<2> { using type = Point2D; };

template <>
struct pointType_<3> { using type = Point3D; };

template 
using Point = typename pointType_::type;

推荐阅读
linjiabin43
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有