作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我可以在不破坏用户代码的情况下将类转换为模板类吗?我正在尝试更改一个类以接受模板参数,但与此同时,我想避免破坏现有的客户端代码。更详细地说,现有的代码库是
class A{ // some code };
我把它变成了下面的:
template <type T = defaultType>
class A{ // some code };
非模板化代码实际上是为defaultType
编写的。在没有 c++17(或更高版本)支持的情况下编译代码时,我可以做任何事情以使现有代码不会中断吗?例如,以下应该是有效的:
A a{}; //existing code; works under c++17 with CTAD. How to use in c++14?
A<typeFoo> b{} //new code, if users decide to use a different template argument;
我很感激任何提示或建议!
最佳答案
你可以做 std::string
做的事情:
template <typename T>
class basic_A{ ... };
using A = basic_A<defaultType>;
关于c++ - 如何在不破坏现有客户端代码(pre c++17)的情况下将类转换为模板类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67851026/
我是一名优秀的程序员,十分优秀!