命名空间
变体
操作

std::basic_streambuf<CharT,Traits>::setg

来自 cppreference.com
< cpp‎ | io‎ | basic streambuf
 
 
 
 
protected:
void setg( char_type* gbeg, char_type* gcurr, char_type* gend );

设置定义获取区域的指针的值。

调用后,eback() == gbeggptr() == gcurr 以及 egptr() == gend 都为 true.

如果 [gbeggend)[gbeggcurr)[gcurrgend) 中任何一个不是 有效范围,则行为未定义。

内容

[编辑] 参数

gbeg - 指向获取区域新开始的指针
gcurr - 指向获取区域中新的当前字符(获取指针)的指针
gend - 指向获取区域新结尾的指针

[编辑] 示例

#include <iostream>
#include <sstream>
 
class null_filter_buf : public std::streambuf
{
    std::streambuf* src;
    char ch; // single-byte buffer
protected:
    int underflow()
    {
        traits_type::int_type i;
        while ((i = src->sbumpc()) == '\0')
            ; // skip zeroes
        if (!traits_type::eq_int_type(i, traits_type::eof()))
        {
            ch = traits_type::to_char_type(i);
            setg(&ch, &ch, &ch+1); // make one read position available
        }
        return i;
    }
public:
    null_filter_buf(std::streambuf* buf) : src(buf)
    {
        setg(&ch, &ch + 1, &ch + 1); // buffer is initially full
    }
};
 
void filtered_read(std::istream& in)
{
    std::streambuf* orig = in.rdbuf();
    null_filter_buf buf(orig);
    in.rdbuf(&buf);
    for (char c; in.get(c);)
        std::cout << c;
    in.rdbuf(orig);
}
 
int main()
{
    char a[] = "This i\0s \0an e\0\0\0xample";
    std::istringstream in(std::string(std::begin(a), std::end(a)));
    filtered_read(in);
}

输出

This is an example

[编辑] 缺陷报告

以下行为更改缺陷报告被追溯应用于之前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 4023 C++98 setg 不需要输入序列为有效范围 要求

[编辑] 另请参阅

重新定位输出序列的开始、下一个和结束指针
(受保护的成员函数) [编辑]