basic_stream::seekg()方法用于设置要从输入流中提取的下一个字符的位置。 iostream头文件中提供了此函数。以下是相同的语法:
头文件:
#include<iostream>
用法:
basic_istream& seekg (pos_type pos);
参数:
- pos:它表示缓冲区中的新位置。
返回值:此函数返回basic_istream对象。
下面是说明std::basic_istream::seekg()的程序
程序1:
// C++ code for basic_istream::seekg()
#include <bits/stdc++.h>
using namespace std;
// Driver code
int main()
{
string str = "Geeks for Geeks";
istringstream gfg(str);
string a, b;
gfg >> a;
gfg.seekg(0); // rewind
gfg >> b;
cout << "a = " << a << endl;
cout << "b = " << b << endl;
}
输出:
a = Geeks b = Geeks
程序2:
// C++ code for basic_istream::seekg()
#include <bits/stdc++.h>
using namespace std;
// Driver code
int main()
{
string str = "Geeks for Geeks";
istringstream gfg(str);
string a, b;
gfg >> a;
gfg.seekg(6); // rewind
gfg >> b;
cout << "a = " << a << endl;
cout << "b = " << b << endl;
}
输出:
a = Geeks b = for
参考: http://www.cplusplus.com/reference/istream/basic_istream/seekg/
相关用法
- C++ cin get()用法及代码示例
- C++ std::add_lvalue_reference用法及代码示例
- C++ std::is_nothrow_constructible用法及代码示例
- C++ std::is_trivially_move_constructible用法及代码示例
- C++ std::is_trivially_move_assignable用法及代码示例
- C++ std::is_nothrow_copy_constructible用法及代码示例
- C++ std::make_signed用法及代码示例
- C++ std::rank用法及代码示例
- C++ std::is_nothrow_assignable用法及代码示例
- C++ ratio_equal()用法及代码示例
- C++ std::to_address用法及代码示例
- C++ std::is_trivially_assignable用法及代码示例
- C++ std::remove_const用法及代码示例
- C++ std::is_nothrow_destructible用法及代码示例
- C++ std::remove_volatile用法及代码示例
- C++ std::bit_xor用法及代码示例
- C++ mbrtoc16()用法及代码示例
- C++ mbrtoc32()用法及代码示例
- C++ ios bad()用法及代码示例
- C++ std::is_heap()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 basic_istream::seekg() in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。