gpt4 book ai didi

c++ - 在类构造函数中拆分字符串

转载 作者:行者123 更新时间:2023-11-28 06:34:16 27 4
gpt4 key购买 nike

我有一个包含 2 个数据成员的类:大小和一个整数数组(动态分配)。该类的目的是创建一个大小的数组并用值填充它。任务是创建一个将字符串作为参数的构造函数,但字符串看起来像这样:“12|13|14|15”等。我已经搜索过这个但是所有的解决方案都有点太复杂了,因为它们涉及 vector ,我们还没有开始使用 vector 。我基本上想将这些数字放入 1 乘 1 的整数数组中,并找出数组的大小。我怎样才能做到这一点?我尝试弄乱 getline 和 stringstream,但这给了我很多错误。我的代码如下所示。

#include <string>
#include <iostream>
#include <sstream>
using namespace std;

class IntArrays {
private:
static int objcount;
int size;
public:
int *arrayints;
const static int objcountf();
IntArrays(int);
IntArrays(const IntArrays &p){
size = p.size;
for (int i = 0;i <size;i++){
arrayints[i] = p.arrayints[i];
}
}
IntArrays(std::string f){
// ignore the other constructors, this is the constructor that is giving me trouble
int counter =0;
istringstream inStream(f);
string newstring;
while (getline(iss,newstring, '|')){
arrayints[counter] = stoi(newstring);
counter++;}
void enternums();
(note that this is only the header file, and that the current string constructor I have there does not work.

最佳答案

此代码是我的版本。我更喜欢使用 vector 而不是原始 array

类定义:

class IntArrays {
public:
IntArrays(const string&, const char&);
const vector<int>& data() { return _data; }
const int size() { return _data.size(); }

private:
vector<int> _data;
};

构造器实现如下:

IntArrays::IntArrays(const string& str, const char& delimiter) {
string buff;
for(auto& n:str) {
if(n != delimiter) buff+=n; else
if(n == delimiter && buff != "") {
_data.push_back(stoi(buff));
buff = "";
}
}
if(buff != "") _data.push_back(stoi(buff));
}

然后我们只使用类:

IntArrays a("1|4|9|6|69", '|');
vector<int> da = a.data();

IntArrays b("1,4,9,6,69", ',');
vector<int> db = b.data();

关于c++ - 在类构造函数中拆分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27011893/

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