std::strstream::rdbuf

< cpp‎ | io‎ | strstream

strstreambuf* rdbuf() const;

返回指向关联 std::strstreambuf 的指针,转型走其常性(无关乎成员函数上的 const 限定符)。

参数

(无)

返回值

指向关联 std::strsteambuf 的指针,常性被转型走。

示例

#include <strstream>
int main()
{
    const std::strstream buf;
    std::strstreambuf* ptr = buf.rdbuf();
}