为什么我在传递 ifstream& 时会收到错误?

发布于 2024-12-02 13:25:20 字数 822 浏览 0 评论 0原文

我正在尝试编写一个简单的程序,该程序使用 ifstream 和扫描仪来读取文本文件。由于某种原因,我收到此错误:“传递 'bool ReadVector(std::ifstream&, Vector&)' 的参数 1”。知道我做错了什么吗?

#include <iostream>
#include <fstream>
#include <string>
#include "scanner.h"
#include "genlib.h"
#include "simpio.h"
#include "vector.h"

// prototype
bool ReadVector(ifstream & infile, Vector<double> & vec);

// main
int main(){
    Vector<double> vec;
    ifstream infile;
    infile.open("SquareAndCubeRoots.txt");
    if (infile.fail()) Error("Opening file screwed up");
    bool foo = ReadVector(&infile, &vec); // stub
    cout << foo;
    infile.close();
    return 0;
}

// stub
bool ReadVector(ifstream & infile, Vector<double> & vec){
    return true;
}

I'm trying to code a simple program that uses an ifstream and scanner to read a text file. For some reason I'm getting this error: "In passing argument 1 of 'bool ReadVector(std::ifstream&, Vector<double>&)'". Any idea what I've done wrong?

#include <iostream>
#include <fstream>
#include <string>
#include "scanner.h"
#include "genlib.h"
#include "simpio.h"
#include "vector.h"

// prototype
bool ReadVector(ifstream & infile, Vector<double> & vec);

// main
int main(){
    Vector<double> vec;
    ifstream infile;
    infile.open("SquareAndCubeRoots.txt");
    if (infile.fail()) Error("Opening file screwed up");
    bool foo = ReadVector(&infile, &vec); // stub
    cout << foo;
    infile.close();
    return 0;
}

// stub
bool ReadVector(ifstream & infile, Vector<double> & vec){
    return true;
}

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

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

发布评论

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

评论(2

梨涡少年 2024-12-09 13:25:20

ReadVector 接受引用,但您给出的是指针。只需致电

bool foo = ReadVector(infile, vec);

ReadVector accepts a reference, but you are giving a pointer. Just call

bool foo = ReadVector(infile, vec);
睡美人的小仙女 2024-12-09 13:25:20

您试图传递一个指针,而参数是一个引用。删除地址运算符 (ReadVector(infile, vec))。

You're trying to pass a pointer, while the argument is a reference. Remove address-of operators (ReadVector(infile, vec)).

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