📜  在带有示例的c ++文件处理中tell。()

📅  最后修改于: 2021-05-30 10:49:23             🧑  作者: Mango

tellp()函数与输出流一起使用,并返回指针在流中的当前“放置”位置。它没有参数,并且返回成员类型pos_type的值,该值是表示放置流指针的当前位置的整数数据类型。

句法:

pos_type tellp();

返回–成功时当前输出位置指示器,否则返回-1。

示例1 –

// cpp code to get the position at particular
// position using tellp() function
#include 
#include 
using namespace std;
  
int main()
{
    fstream file;
  
    // open file in read and write mode
    file.open("myfile.txt", ios::out);
    file << "geeksforgeeks";
  
    // print the position of the pointer in file
    cout << "the current position of pointer is :"
         << file.tellp() << endl;
  
    // close the open file
    file.close();
}

输出 –

the current position of pointer is :-1

在上面的代码中,tellp()返回它在文件中指向的当前位置。

示例2 –

// code to add content at particular position 
// using tellp()
#include 
using namespace std;
  
int main()
{
    long position;
    fstream file;
  
    // open the file in read and write mode
    file.open("myfile.txt");
  
    // write content in the file
    file.write("this is an apple", 16);
    position = file.tellp();
  
    // set position of pointer usin seekp
    file.seekp(position - 7);
    file.write(" sam", 4);
    file.close();
}

输出 –

this is a sample

这里的tellp()函数返回指针的位置,然后使用seekp()函数将指针从n位置向后移,在这里它向后移7个位置,然后在该位置插入内容。

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”