- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的问题可能出在索引或我的语法上。我正在尝试填充两个
来自输入文件的数组 names[]
和 shares[]
。
程序的一半,手动输入,工作正常。每次尝试 fstream 一半
已经用 -1.#IND
打印了一个空的输出表,用于每个
股东。
我试过 cin >> name >> share
、getline(shareFile, name)
、while(shareFile >> name >> share){ 。 .. 名字[i] = 名字; shares[i] = share;
, 但是我不知道如何以正确的方式使用 getline,所以我正在使用第一个。就像我说的,
不知道是我的索引有问题还是这里的代码有问题。
这是(我相信)问题所在的功能,但也许它只是没有以正确的方式传递东西。
void getFileInputs(string names[], int shares[], int size)
{
string file;
string name;
int share = 0;
bool isOpen = true;
ifstream shareFile("inputfile.txt");
cout << "*----------------------------------*\n"
<< "* Input From File: *\n"
<< "*----------------------------------*\n";
cout << "Please enter the name of the file (.txt): ";
cin >> file;
cout << "\n";
shareFile.open("inputfile.txt");
if(file == "inputfile.txt" || file == "inputfile")
{
int i = 0;
do{
for(i = 0; i < size; i++)
{
shareFile >> names[i] >> shares[i];
}
if(shareFile.eof())
{
isOpen = false;
}
}while(isOpen == true && shareFile >> name >> share);
}
else
{
cout << "Unrecognized file name. \n" << endl;
isOpen = false;
}
}
最佳答案
直接的问题是下面这行代码:
shareFile.open("inputfile.txt");
上面几行,当您构建shareFile
对象时,您使用文件名打开了它但没有关闭它。在已打开的文件流上调用 open()
会在文件流的错误掩码中设置错误。因此,在从流中清除错误之前,任何执行输入的尝试都将失败。
此外,由于 file
是文件的名称,我假设您打算用它打开它。如果是这样,上面应该改为:
std::ifstream shareFile; // default-construct; no file is opened yet
// ...
shareFile.open(file.c_str()); // open it with the value of user-input
另一个问题是循环以及如何将文件中的值分配给数组。首先,您不应使用 do {} while()
,而应使用 for()
循环。此外,如果 shareFile
到达流的末尾,则循环将终止;因此没有理由使用 bool 型 isOpen
变量:
for (int i = 0; shareFile >> name >> share; ++i)
{
// ...
}
现在,一旦值被成功放入name
和share
中,您就可以将它们分配给数组中的值:
for (int i = 0; shareFile >> name >> share; ++i)
{
names[i] = name; shares[i] = share;
}
关于c++ - 最好使用 getline 或 cin 从输入文件填充数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22600058/
我使用 cin.peek() 方法获得了这段代码。我注意到奇怪的行为,当程序输入看起来像 qwertyu$[Enter] 时,一切正常,但是当它看起来像 qwerty[Enter]$ 时,它仅在我键入
#include #include using namespace std; int main(){ ofstream fout("student.dat",ios::out); char name[
我是 C++ 编程新手,遇到了障碍。这是我的代码: #include using namespace std; int main(){ int sum = 0, a; cout >
我有一个简单的程序,当输入完全符合预期时,它名义上可以工作。 #include using namespace std; int main () { int a, b; char a
int main () { int num1, num2; int cnt = 1; if (cin >> num1){ while (cin >> num2){
我有这个程序,但 cin 随机跳过..我的意思是有时它会,有时它不会。有什么解决办法吗? int main(){ /** get course name, number of
我是一名正在准备期末考试的 C++ 初学者。我用两种方式写了一个程序。第一个代码使用 cin.getline() 并且不能正常工作。第二个代码使用 cin.get() 和 cin >> 并正确执行所有
据我所知,在 cin 之后使用 getline() 时,我们需要先刷新缓冲区中的换行符,然后再调用 getline(),我们通过调用 cin.ignore() 来完成此操作。 std::string
我正在尝试以下代码: int main() { char str1[20]; int a; cout > a; cout > 忽略空格(即 ' ', '\t', '\n
我刚开始阅读 C++ 11 入门书,目前在 if 语句部分。我以前有使用 Java 的经验,但 C++ 输入/输出确实让我感到困惑。为了方便起见,我将多个练习放在一个文件中。但是,似乎自从我调用了 w
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: c++ cin input not working? 我一直在尝试使用以下 C++ 代码在整数后输入字符串。
需要 I/O 重定向,我不能使用 fstream。我用 I/O通过使用 ">line)通过 I/O 读取文件重定向。然后我需要 cin>>x ,但这次是在运行时进行用户输入,但会被跳过。 我试过了 c
我正在尝试使用 getline() 但在输入第一个记录光标后不要等待第二个国家/地区名称,它会跳过并跳转到首都名称。我的错误在哪里。如果我输入 国家:印度 首都:德里 Capita:57382 它可以
我有以下循环。它应该读取数字直到 EndOfFile,或者用户输入 -999 int arr[100]; int index; for (index = 0; index > arr[index];
以下两个循环和每个循环什么时候停止有什么区别? #include #include #include using namespace std; int main() { int x,y;
在这个程序的每次输入中,我希望用户能够输入他们想要的任意数量的“单词”(意思是用空格/制表符分隔的文本)......但是不允许用户输入单词超出当前 cin。例如:如果我键入 John Smith Do
int main() { int oddeven = 1; int modulotwo; // Simple loop since no reason to check 0
我写了一个 switch 语句,并创建了一个默认值,它会简单地说用户选择了一个错误的选项并重复输入。我想确保如果出现问题,它会首先清除缓冲区,所以我使用了 cin.sync(),但输入 'a' 仍然会
我是一个新手程序员,正在练习下面的这个程序。无论出于何种原因,在我的程序结束时,cin.ignore() 被编译器完全跳过并直接移动到 cin.get(),但是之前已经有一个按键,所以编译器完全跳过它
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我是一名优秀的程序员,十分优秀!