Is it possible to emulate templatelt;auto Xgt;?(是否可以模拟模板auto X?)
问题描述
有什么可能吗?我希望它能够在编译时传递参数.假设它只是为了用户方便,因为人们总是可以用 template
打出真正的类型,但对于某些类型,即指向成员函数的指针,这是相当乏味的,即使使用 decltype
作为快捷方式.考虑以下代码:
Is it somehow possible? I want that to enable compile-time passing of arguments. Suppose it's only for user convenience, as one could always type out the real type with template<class T, T X>
, but for some types, i.e. pointer-to-member-functions, it's pretty tedious, even with decltype
as a shortcut. Consider the following code:
struct Foo{
template<class T, T X>
void bar(){
// do something with X, compile-time passed
}
};
struct Baz{
void bang(){
}
};
int main(){
Foo f;
f.bar<int,5>();
f.bar<decltype(&Baz::bang),&Baz::bang>();
}
是否可以将其转换为以下内容?
Would it be somehow possible to convert it to the following?
struct Foo{
template<auto X>
void bar(){
// do something with X, compile-time passed
}
};
struct Baz{
void bang(){
}
};
int main(){
Foo f;
f.bar<5>();
f.bar<&Baz::bang>();
}
推荐答案
更新后:否.C++ 中没有这样的功能.最接近的是宏:
After your update: no. There is no such functionality in C++. The closest is macros:
#define AUTO_ARG(x) decltype(x), x
f.bar<AUTO_ARG(5)>();
f.bar<AUTO_ARG(&Baz::bang)>();
<小时>
听起来你想要一个发电机:
Sounds like you want a generator:
template <typename T>
struct foo
{
foo(const T&) {} // do whatever
};
template <typename T>
foo<T> make_foo(const T& x)
{
return foo<T>(x);
}
现在而不是拼写:
foo<int>(5);
你可以这样做:
make_foo(5);
推论论证.
这篇关于是否可以模拟模板<auto X>?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否可以模拟模板<auto X>?


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