streampos

存在缓冲区的指针或文件指针的当前位置。

typedef fpos<mbstate_t> streampos;

备注

类型是的同义词。mbstate_t><fpos

示例

// ios_streampos.cpp
// compile with: /EHsc
#include <iostream>
#include <fstream>

int main( ) 
{
   using namespace std;

   ofstream x( "iostream.txt" );
   x << "testing";
   streampos y = x.tellp( );
   cout << y << endl;
}
7

要求

页眉: <ios>

命名空间: std

请参见

参考

fpos 类

iostream 编程

iostreams 约定

其他资源

fpos 成员

ios 成员