C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- C 风格文件输入/输出
- std::basic_streambuf
- std::basic_filebuf
- std::basic_stringbuf
- 输入/输出操纵符
- std::strstreambuf
- std::basic_syncbuf
- std::basic_ios
- std::basic_istream
- std::ios_base
- std::basic_osyncstream
- std::basic_istream<CharT,Traits>::operator>>
- std::basic_ostream
- std::basic_iostream
- std::basic_ifstream
- std::basic_ofstream
- std::basic_fstream
- std::basic_istringstream
- std::basic_ostringstream
- std::basic_stringstream
- std::istrstream
- std::ostrstream
- std::strstream
- std::streamoff
- std::streamsize
- std::fpos
- std::iostream_category
- std::io_errc
- std::cin, std::wcin
- std::cout, std::wcout
- std::cerr, std::wcerr
- std::clog, std::wclog
- 注释
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >输入/输出库 >std::basic_istream > std::basic_istream<CharT,Traits>::operator>>
std::basic_istream<CharT,Traits>::operator>>
basic_istream& operator>>( short& value ); basic_istream& operator>>( unsigned short& value ); |
(1) | |
basic_istream& operator>>( int& value ); basic_istream& operator>>( unsigned int& value ); |
(2) | |
basic_istream& operator>>( long& value ); basic_istream& operator>>( unsigned long& value ); |
(3) | |
basic_istream& operator>>( long long& value ); basic_istream& operator>>( unsigned long long& value ); |
(4) | (C++11 起) |
basic_istream& operator>>( float& value ); basic_istream& operator>>( double& value ); |
(5) | |
basic_istream& operator>>( bool& value ); |
(6) | |
basic_istream& operator>>( void*& value ); |
(7) | |
basic_istream& operator>>( std::ios_base& (*func)(std::ios_base&) ); |
(8) | |
basic_istream& operator>>( std::basic_ios<CharT,Traits>& (*func)(std::basic_ios<CharT,Traits>&) ); |
(9) | |
basic_istream& operator>>( basic_istream& (*func)(basic_istream&) ); |
(10) | |
basic_istream& operator>>( std::basic_streambuf<CharT,Traits>* sb ); |
(11) | |
从输入流释出值。
1-4) 释出整数值,潜在地跳过前导空格。存储值到给定的引用
value
。 此函数表现为有格式输入函数 (FormattedInputFunction) 。构造并检查 sentry 对象,可能跳过前导空格后,通过调用 std::num_get::get() 释出整数值。
5) 释出浮点值,潜在地跳过前导空格。存储值到给定的引用
value
。 此函数表现为有格式输入函数 (FormattedInputFunction) 。构造并检查 sentry 对象,可能跳过前导空格后,通过调用 std::num_get::get() 释出浮点值。
6) 释出布尔值,潜在地跳过前导空格。存储值到给定的引用
value
。 此函数表现为有格式输入函数 (FormattedInputFunction) 。构造并检查 sentry 对象,可能跳过前导空格后,通过调用 std::num_get::get() 释出 bool 值。
7) 释出泛用指针值,潜在地跳过前导空格。存储值到给定的引用
value
。 此函数表现为有格式输入函数 (FormattedInputFunction) 。构造并检查 sentry 对象,可能跳过前导空格后,通过调用 std::num_get::get() 释出泛用指针值。
8-10) 调用 func(*this) ,其中
func
为 I/O 操纵符。11) 表现为无格式输入函数 (UnformattedInputFunction) 。在构造并检查 sentry 对象后,从输入流释出所有数据并将它存储到
sb
。若满足下列条件之一则释出停止:
- 输入序列上出现文件尾;
- 输出序列中插入失败(该情况下不释出要被插入的字符);
- 出现异常(该情况下捕捉异常,而仅若
exceptions()
中启用了failbit
才重抛)。
sb
为空指针或未插入字符到 sb
中,则调用 setstate(failbit) (若启用则会抛出 std::ios_base::failure )。
若释出失败(例如若在期待数位处遇到字母),则保留 |
(C++11 前) |
若释出失败,则写入零到 |
(C++11 起) |
参数
value | - | 到要存储释出值到的整数或浮点值的引用 |
func | - | 指向 I/O 操纵符函数的指针 |
sb | - | 指向要写入全部数据到的流缓冲的指针 |
返回值
1-9,11) *this
10) func(*this)
示例
运行此代码
#include <iostream> #include <iomanip> #include <sstream> int main() { std::string input = "41 3.14 false hello world"; std::istringstream stream(input); int n; double f; bool b; stream >> n >> f >> std::boolalpha >> b; std::cout << "n = " << n << '\n' << "f = " << f << '\n' << "b = " << std::boolalpha << b << '\n'; // 用 streambuf 重载释出剩余内容 stream >> std::cout.rdbuf(); std::cout << '\n'; }
输出:
n = 41 f = 3.14 b = false hello world
参阅
提取字符和字符数组 (函数模板) | |
执行字符串的流输入与输出 (函数模板) | |
执行 bitset 的流输入和输出 (函数) | |
复数的序列化和反序列化 (函数模板) | |
执行伪随机数引擎的流输入和输出 (函数) | |
执行伪随机数分布的流输入和输出 (函数模板) | |
读并取走一块字符 (公开成员函数) | |
读并取走已经可用的字符块 (公开成员函数) | |
从流中读并取走(移除类似指针向下一个元素移动)一个字符 (公开成员函数) | |
一直读并取走字符,直至找到给定字符 (公开成员函数) | |
(C++17) |
转换字符序列到整数或浮点值 (函数) |