gpt4 book ai didi

c# - C++ 是否有一些类似于 C# Type 的东西来将类的类型存储在列表/数组中?

转载 作者:太空狗 更新时间:2023-10-29 21:27:19 25 4
gpt4 key购买 nike

在 C# 中,我可以创建这样的列表来存储类类型:

List<Type> types_list = new List<Type>();
types_list.add(typeof(int));
types_list.add(typeof(Process)); //and etc

我可以在 C++ 中做同样的事情吗?

最佳答案

参见 typeidtype_info .

请注意,您不能使用 type_info 类来创建它表示的类型的新实例,因为 C++ 不支持它。

关于c# - C++ 是否有一些类似于 C# Type 的东西来将类的类型存储在列表/数组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9279850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com