- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
如果这面墙过多,我的问题会在本页底部进行总结。无论如何,我正在尝试从包含原子及其类型列表的文件中读取行,格式如下:
Li O Ti La
1 24 8 5
此示例有四个元素和 38 个原子,但我正在编写我的代码以容纳任意数量的元素。不管内容如何,元素符号总是在一行,原子在下一行。我认为最好的方法是使用 getline 将每一行插入到一个字符串中,然后使用 stringstream 适本地解析这些字符串。但事实证明,任意大小的考虑对我来说是个问题。我尝试使用 stringstream:
#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
#include <sstream>
using namespace std;
int main() {
string line;
int num_elements;
struct Element {
string symbol;
int count;
};
Element* atoms_ptr = NULL; //to be allocated
ifstream myfile("filename");
getline(myfile, line);
num_elements = (int)(line.size()/5); //symbols in file have field width 5
atoms_ptr = new Element[num_elements];
for (int i=0; i<num_elements; ++i) {
stringstream(line) >> (*(atoms_ptr+i)).symbol; //does not work
}
getline(myfile, line);
for (int i=0; i<num_elements; ++i) {
stringstream(line) >> (*(atoms_ptr+i)).count; //does not work
}
...
return 0;
}
您可能已经意识到我的 stringstream 语句存在问题。不是将四个元素中的每一个都读入一次,而是将第一个元素读入四次。因此,我数组中每个条目的 .symbol 成员都被初始化为 Li。与原子数类似,.count 成员被初始化为 1。
通过以这种方式重构我的循环,我能够编写出按预期工作的东西:
int j = 3;
for (int i=0; i<num_elements; ++i) {
(*(atoms_ptr+i)).symbol = line.substr(j, 2);
j += 5;
cout << (*(atoms_ptr + i)).symbol << '\n';
}
但我不喜欢这个解决方案,因为它取决于确切的文件间距,不是特别可读,而且我仍然不知道如何正确使用 stringstream。
从根本上说,我认为问题是由于我在循环中使用了 stringstream。也许每次迭代都会重置字符串文件指针的位置?如果是这样,我需要一个解决方法。如果能提供任何帮助,我将不胜感激。提前致谢!
最佳答案
这应该可以解决问题
#include <iostream>
#include <fstream>
#include <string>
#include <iterator>
#include <vector>
struct Element
{
std::string symbol;
int count;
};
int main()
{
std::ifstream myfile("test.txt");
std::vector<std::string> tokens(
(std::istream_iterator<std::string>(myfile)),
(std::istream_iterator<std::string>()));
myfile.close();
std::vector<Element> elements;
const size_t numEntries = tokens.size() / 2;
for (size_t i = 0; i < numEntries; i++)
{
elements.push_back({ tokens[i], std::stoi(tokens[i+ numEntries]) });
}
return 0;
}
一些解释:
它首先将您的文件内容读入一个字符串 vector (前半部分是元素名称,后半部分是计数)然后它遍历 vector 并将信息聚合到 Element 的 vector 中(途中将计数转换为整数)
关于c++ - 在循环中使用 stringstream,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50955615/
我重载了 operator", str); // googletest test //Second test ss.str("");ss.clear(); //Mandatory if 'ss' ne
我有这个代码,想知道是否有可能让 stringstream 将 uint8_t 视为数字而不是字符? uint8_t s; std::stringstream sstream( "255" ); ss
函数 fprintf 写入 FILE*。我有一个写入 stringstream 的 debugPrint 函数。我不想更改我的功能,因为它在很多地方都被使用,而且它会破坏代码。 如何将字符串流传递给
我知道 stringstream 可以用 stringstream::str() 更新,但是如果之后我在 stringstream 中输入其他内容,它没有按预期工作。以下片段演示了该现象: #incl
我希望 stringstream 有一个从 string&& 窃取其初始内容的构造函数。 STL中通常不存在这种跨物种的“move 构造函数”吗?如果没有,为什么不呢? 最佳答案 有历史,令人失望。但
我什么时候使用 std::istringstream、std::ostringstream 和 std::stringstream 以及为什么我不应该只使用std::stringstream 在每个场
考虑以下代码,它编译并运行: #include #include struct Foo {}; void operator>>(std::istream &, Foo) { } int main(
考虑: std::string s_a, s_b; std::stringstream ss_1, ss_2; // at this stage: // ss_1 and ss
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
这个问题在这里已经有了答案: Why is "using namespace std;" considered bad practice? (42 个回答) 关闭 9 年前。 我是 C++ 的新手,
伙计们,实际上我想在这里做的是,当我输入 3,12,36 时,输出将是: 3 12 36 但是在这里我很难让它输出所有的答案。我一直在做的是,当您输入 3,12,36 时,它只会输出 3 12,如果您
我这里有这段代码 cout > s; stringstream is(s); is >> x >> y; cout > x cin >> y 关于C++ Strings
我遇到了以下代码的问题。 short int decrypted0[] = {0,2}; string message = "22"; string string0 =""; for(i=0;i
我正在尝试一个“stringstream”程序,它是这样的: #include #include using namespace std; int main() { int x; char ch;
我的印象是未格式化的 write()会将字节逐字复制到 ostream它被称为。另一位 SO 用户还告诉我“写入函数不会跳过任何内容”。如果您在使用 stringstream 时遇到问题,问一个问题。
这是一个用于解析文本文件的示例,问题是如果我在内部 while 循环之外声明“string parm”,那么一行中的最后一个字符串总是得到双重输出(这只发生在某些空格字符出现在“source.txt”
这个问题在这里已经有了答案: How to clear stringstream? [duplicate] (1 个回答) 关闭 9 年前。 例如我有这段代码: #include #include
#include #include #include #include using namespace std; stack aStack; s
我试图仅将 char 数组中的数字添加到 stringstream 对象中。代码是: char[50] buffer = ''; stringstream str; int page; str > p
为什么这个程序打印出空白? string str; stringstream ss(str); ss << "A string"; cout << str; // just blank
我是一名优秀的程序员,十分优秀!