std::strstream::freeze

< cpp‎ | io‎ | strstream

void freeze(bool flag = true);

若流用动态分配的数组输出,则禁用( flag == true )或启用( flag == false )缓冲区的自动分配/解分配。等效地调用 rdbuf()->freeze(flag)

注意

调用 str() 后,动态流自动变为冻结。要求在退出创建此 strstream 对象于其中的作用域前调用 freeze(false) 。否则析构函数将泄露内存。还有,一旦到被冻结流的附加输出抵达分配的缓冲区结尾,则它可能被截断,这可能令缓冲区为非空终止。

参数

flag - 所欲状态

返回值

(无)

示例

#include <strstream>
#include <iostream>
 
int main()
{
    std::strstream dyn; // 动态分配的输出缓冲区
    dyn << "Test: " << 1.23; // 注意:无 std::ends ,以演示后附
    std::cout << "The output stream contains \"";
    std::cout.write(dyn.str(), dyn.pcount()) << "\"\n";
    // 流现在因 str() 冻结
    dyn << " More text"; // 到冻结流的输出可能被截断
    std::cout << "The output stream contains \"";
    std::cout.write(dyn.str(), dyn.pcount()) << "\"\n";
    dyn.freeze(false); // 必须调用 freeze(false) ,否则析构函数将泄露
 
    std::strstream dyn2; // 动态分配的输出缓冲区
    dyn2 << "Test: " << 1.23; // 注意:无 std::ends
    std::cout << "The output stream contains \"";
    std::cout.write(dyn2.str(), dyn2.pcount()) << "\"\n";
    dyn2.freeze(false);   // str() 后解冻流
    dyn2 << " More text" << std::ends; // 输出将不被截断(缓冲区成长)
    std::cout << "The output stream contains \"" << dyn2.str() << "\"\n";
    dyn2.freeze(false); // 必须调用 freeze(false) ,否则析构函数将泄露
}

可能的输出:

The output stream contains "Test: 1.23"
The output stream contains "Test: 1.23 More "
The output stream contains "Test: 1.23"
The output stream contains "Test: 1.23 More text"

参阅

设置/清除缓冲区的冻结状态
(std::strstreambuf 的公开成员函数)