gpt4 book ai didi

c++ - 如果我不使用引用,为什么这段代码不能编译?

转载 作者:行者123 更新时间:2023-11-28 00:08:22 25 4
gpt4 key购买 nike

我有一个在 std::ifstream 上运行的函数:

#include <fstream>

void handle(std::ifstream file) {
// Do things
}

int main() {
std::ifstream file("x.txt");
handle(file);
}

这段代码给我 this错误。

但是,如果我将 handle 的单个参数作为引用(void handle(std::ifstream& file),代码编译时不会出现警告。

为什么?

最佳答案

参数是传值,需要复制参数。
但是std::ifstream 不提供复制构造函数。

来自 here :

ifstream (const ifstream&) = delete;

关于c++ - 如果我不使用引用,为什么这段代码不能编译?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34244949/

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