gpt4 book ai didi

c++ - 在 C++ 中有类似于 typeof 的东西吗?

转载 作者:行者123 更新时间:2023-11-30 04:20:06 25 4
gpt4 key购买 nike

我正在尝试创建一个构造函数来说明它存储的对象类型。有什么简单的方法可以做到这一点?我在看 decltype。

template <typename T>
MyVector<T>::MyVector(int setCap)
{
m_ptr = new T[setCap];
m_size = 0;
m_capacity = setCap;
string typeSet = decltype(T);
cout << "New MyVector of type " << typeSet << " created\n";
}

最佳答案

C++ 有 typeid:

#include <typeinfo>

std::cout << "The type is " << typeid(T).name();

关于c++ - 在 C++ 中有类似于 typeof 的东西吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15396586/

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