什么是 C++ 中的流?

2024-08-13C/C++开发问题
3

本文介绍了什么是 C++ 中的流?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我听说过流,更具体地说是文件流.

I have been hearing about streams, more specifically file streams.

那么它们是什么?

它是否在内存中有一个位置?

Is it something that has a location in the memory?

它是包含数据的东西吗?

Is it something that contains data?

它只是文件和对象之间的连接吗?

Is it just a connection between a file and an object?

推荐答案

术语流是一种构造的抽象,它允许您发送或接收未知数量的字节.比喻是水流.您可以随时获取数据,或根据需要发送数据.例如,将此与具有固定已知长度的数组进行对比.

The term stream is an abstraction of a construct that allows you to send or receive an unknown number of bytes. The metaphor is a stream of water. You take the data as it comes, or send it as needed. Contrast this to an array, for example, which has a fixed, known length.

使用流的示例包括读取和写入文件、通过外部连接接收或发送数据.然而,术语stream 是通用的,并没有说明具体的实现.

Examples where streams are used include reading and writing to files, receiving or sending data across an external connection. However the term stream is generic and says nothing about the specific implementation.

这篇关于什么是 C++ 中的流?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

无法访问 C++ std::set 中对象的非常量成员函数
Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)...
2024-08-14 C/C++开发问题
17

从 lambda 构造 std::function 参数
Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)...
2024-08-14 C/C++开发问题
25

STL BigInt 类实现
STL BigInt class implementation(STL BigInt 类实现)...
2024-08-14 C/C++开发问题
3

使用 std::atomic 和 std::condition_variable 同步不可靠
Sync is unreliable using std::atomic and std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)...
2024-08-14 C/C++开发问题
17

在 STL 中将列表元素移动到末尾
Move list element to the end in STL(在 STL 中将列表元素移动到末尾)...
2024-08-14 C/C++开发问题
9

为什么禁止对存储在 STL 容器中的类重载 operator&()?
Why is overloading operatoramp;() prohibited for classes stored in STL containers?(为什么禁止对存储在 STL 容器中的类重载 operatoramp;()?)...
2024-08-14 C/C++开发问题
6