fpos::operator-

递减文件位置指示符。

streamoff operator-(
   const fpos<Statetype>& _Right
) const;
fpos<Statetype> operator-(
   streamoff _Off
) const;

参数

  • _Right
    文件位置。

  • _Off
    流偏移量。

返回值

第一个成员函数返回 (streamoff)*this - (streamoff)_Right。 第二个成员函数返回 fpos(*this) -= _Off。

示例

使用 operator-示例参见 运算符! =

要求

标头: <ios>

命名空间: std

请参见

参考

fpos Class

iostream编程

(mfc)约定