C ++
 Computer >> コンピューター >  >> プログラミング >> C ++

C ++言語のファイル処理でseekg()を使用して位置を設定します


seekg()は、ファイル内の任意の位置を検索できるようにするiostreamライブラリの関数です。これは主に、C++ファイル処理で特定のファイルの入力ストリームから抽出される次の文字の位置を設定するために使用されます。

構文

istream&seekg(streamoff offset, ios_base::seekdir dir);
istream&seekg(streampos position);
Where,
position: It is the new position in the stream buffer.
offset: It is an integer value of type streamoff which represents the offset in the stream’s buffer, relative to the dir parameter.
dir: It is the seeking direction. It is an object of type ios_base::seekdir that can take any offset constant value.

Three direction used for offset values are:
ios_base::beg = from the beginning of the stream’s buffer.
ios_base::cur = from the current position in the stream’s buffer.
ios_base::end = from the end of the stream’s buffer.

必要な手順と操作

Begin
   Open a data file for input/output operations.
   Add ‘TutorialsPoint’ to the file.
   Seek to 9 position from beginning of the file.
   Read the next 5 characters from the file into buffer F.
   End F with null character as terminator character.
   Print the contents.
   Close the file.
End

#include <fstream>
#include <iostream>
using namespace std;
int main (int argc, char** argv) {
   fstream File("d.txt", ios::in | ios::out );
   File << "TutorialsPoint";
   File.seekg(9, ios::beg);
   char F[9];
   File.read(F, 5);
   F[5] = 0;
   cout <<F<< endl;
   File.close();
}

出力

Point

  1. C++で3nスライスのピザ

    さまざまなサイズの3nスライスのピザがあるとすると、私と2人の友人は次のようにピザのスライスを取ります- ピザのスライスを選びます。 友達のアマルが私のピックの反時計回りに次のスライスをピックします。 友達のBimalが、私のピックの時計回りに次のスライスをピックします。 ピザのスライスがなくなるまで、これらの手順を繰り返します。 ピザスライスのサイズは、時計回りの円形配列スライスで表されます。可能な最大のスライスサイズの合計を見つける必要があります。 したがって、入力が[9,8,6,1,1,8]のような場合、 次に、各ターンでサイズ8のピザスライスを選

  2. C++の部分文字列

    部分文字列は文字列の一部です。 C ++で部分文字列を取得する関数はsubstr()です。この関数には、posとlenの2つのパラメーターが含まれています。 posパラメータは部分文字列の開始位置を指定し、lenは部分文字列の文字数を示します。 C++で部分文字列を取得するプログラムは次のとおりです- 例 #include <iostream> #include <string.h> using namespace std; int main() {    string str1 = "Apples are red"; &nb