iftream,cin,istream,istrstream里面哪个不是c++的输入流对象
时间: 2024-01-06 21:03:05 浏览: 76
C++的输入输出流
其实,它们都是C++的输入流对象。其中,`cin`是`istream`类的一个对象,`ifstream`是从文件中读取数据的`istream`的派生类,`istrstream`是从字符串中读取数据的`istream`的派生类。它们都定义在`<iostream>`头文件中。因此,它们都是C++中用于输入流处理的对象。
阅读全文