Can the template parameters of a constructor be explicitly specified?(可以显式指定构造函数的模板参数吗?)
问题描述
类的构造函数可以是模板函数.在调用此类构造函数时,编译器通常会查看提供给构造函数的参数,并从中确定使用的模板参数.是否也有一些语法可以明确指定模板参数?
A constructor of a class can be a template function. At the point where such a constructor is called, the compiler usually looks at the arguments given to the constructor and determines the used template parameters from them. Is there also some syntax to specify the template parameters explicitly?
一个人为的例子:
struct A {
template<typename T>
A() {}
};
有没有办法实例化这个类?显式指定构造函数的模板参数的语法是什么?
Is there a way to instantiate this class? What is the syntax to explicitly specify the constructor's template parameters?
我的用例将是一个问题,因为编译器似乎没有找到正确的模板化构造函数.显式指定模板参数可能会生成更有用的错误消息,甚至可以解决问题.
My use case would be a problem were the compiler doesn't seem to find the correct templated constructor. Explicitly specifying the template parameters would probably generate more useful error messages or even resolve the problem.
推荐答案
没有.C++03 标准说:
No. The C++03 standard says:
[注意:因为显式模板参数列表跟在函数模板名称之后,并且因为转换成员函数模板和构造函数成员函数模板是在不使用函数名的情况下调用的,所以无法为这些函数模板提供显式的模板参数列表.] (§14.5.2/5)
[Note: because the explicit template argument list follows the function template name, and because conversion member function templates and constructor member function templates are called without using a function name, there is no way to provide an explicit template argument list for these function templates.] (§14.5.2/5)
这篇关于可以显式指定构造函数的模板参数吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:可以显式指定构造函数的模板参数吗?


基础教程推荐
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01