C 中的自定义流操纵器修改
使用自定义操纵器修改流上的未来项目是 C 中的一种通用技术。虽然“hex”等操纵器会改变输出格式,但调整值的操纵器(如“plusone”)提供了更大的灵活性。
为了在每个流中存储状态,使用了 iword 函数和 xalloc 索引。
inline int geti() { static int i = ios_base::xalloc(); return i; } ostream& add_one(ostream& os) { os.iword(geti()) = 1; return os; } ostream& add_none(ostream& os) { os.iword(geti()) = 0; return os; }
利用构面,可以自定义数字输出。 my_num_put 结构重写 do_put 方法以根据存储的状态递增值。
struct my_num_put : num_put<char> { iter_type do_put(iter_type s, ios_base& f, char_type fill, long v) const { return num_put<char>::do_put(s, f, fill, v + f.iword(geti())); } iter_type do_put(iter_type s, ios_base& f, char_type fill, unsigned long v) const { return num_put<char>::do_put(s, f, fill, v + f.iword(geti())); } };
应用此操纵器,数值输出被修改:
int main() { // outputs: 11121011 cout.imbue(locale(locale(),new my_num_put)); cout << add_one << 10 << 11 << add_none << 10 << 11; }
对于单个项目修改,重置建议在每次 do_put 调用后将单词改为 0。
以上是如何使用自定义流操纵器来修改 C 中输出流上的未来项目?的详细内容。更多信息请关注PHP中文网其他相关文章!