std::istrstream::str

来自cppreference.com
< cpp‎ | io‎ | istrstream

char* str();
(C++98 中弃用)
(C++26 中移除)

冻结缓冲区后,返回指向其起始的指针。相当于调用 rdbuf()->str()

参数

(无)

返回值

指向关联 std::strstreambuf 中缓冲区起始的指针,或若无可用缓冲区则为空指针。


示例