當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ basic_istream::seekg()用法及代碼示例


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/




相關用法


注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 basic_istream::seekg() in C++ with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。