初始化模板数组

发布于 2024-12-09 14:57:26 字数 577 浏览 0 评论 0原文

我正在尝试模仿向量 STL 类。我的构造函数调用以下函数,该函数将在堆上为其分配一些内存。我想初始化每个对象,无论它们是基元还是对象。我不确定实现此目的的语法。我只想调用默认构造函数。带有 T(storage[i]); 的行显示了该位置。

        void init_vector(uint reserve)
        {
            if (reserve == 0) reserve=1;
            _size = 0;

            storage = (T*)malloc(sizeof(T)*reserve);
            if (storage == NULL)
            {
                assert(false);
            }

            for (uint i=0; i<reserve; i++)
            {
                T(storage[i]); ???
            }
            _reserved = reserve;
        }

I'm trying to mimic the vector STL class. My constructor calls the following function which will allocate some memory for it on the heap. I want to initialize each of the objects, whether they be primitives or objects. I'm not sure of the syntax to achieve this. I just want the default constructor to be called. The line with T(storage[i]); shows the spot.

        void init_vector(uint reserve)
        {
            if (reserve == 0) reserve=1;
            _size = 0;

            storage = (T*)malloc(sizeof(T)*reserve);
            if (storage == NULL)
            {
                assert(false);
            }

            for (uint i=0; i<reserve; i++)
            {
                T(storage[i]); ???
            }
            _reserved = reserve;
        }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不寐倦长更 2024-12-16 14:57:26

您可以使用新展示位置

new (&storage[i]) T;

You can use placement new.

new (&storage[i]) T;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文