gpt4 book ai didi

c++ - 无符号整型 vector C++

转载 作者:行者123 更新时间:2023-11-30 05:30:50 24 4
gpt4 key购买 nike

所以我有一个 vector 模板类,如下所示:

#ifndef Vector_H
#define Vector_h

#include <iostream>
#include <assert.h>

using namespace std;

template <class T>
class Vector
{

public:
//constructor anddestructor
Vector(unsigned int numberOfElements);
virtual ~Vector();

//overloading the [] operator
T & operator [] (unsigned int index) const;

//length
unsigned int length() const;

private:
T * data; //the elements in the vector
unsigned int size;

};

在另一个类中,我使用模板类并创建一个 vector 。我想从 .csv 文件中读取行并分解行(即客户姓名、ID、年龄和性别)并将其放入 vector 中。

我是否需要在我的模板类中添加一个 add 函数来将值添加到 vector 中?我这样做是不是错了?感谢您的帮助。

最佳答案

如果您知道要添加到 vector 中的元素数量,那么您的用例就不需要了。您可以只使用该大小初始化 vector ,然后使用运算符 []修改内容。但是一个push_back -like 函数将非常有用。

Am I going about this all wrong?

假设这不是真正的学习目的。如果不是:是,使用 std::vector<T> .

关于c++ - 无符号整型 vector C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35791434/

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