কম্পিউটার

C++ ক্লাসের মাধ্যমে ফাইল হ্যান্ডলিং


এই টিউটোরিয়ালে, আমরা C++ ক্লাসের মাধ্যমে ফাইল হ্যান্ডলিং বোঝার জন্য একটি প্রোগ্রাম নিয়ে আলোচনা করব।

ফাইলগুলির সাথে ইন্টারঅ্যাক্ট করার জন্য ফাইল হ্যান্ডলিংয়ে ব্যবহৃত ডিফল্ট ফাংশনগুলি ক্লাস ব্যবহার করে ব্যবহারকারী দ্বারা সংজ্ঞায়িত করা যেতে পারে। নিচে ifstream এবং ofstream ফাংশন বাস্তবায়ন করা হল।

উদাহরণ

#include <iostream>
#include <fstream>
using namespace std;
int main(){
   //creating ofstream object ofstream fout;
   string line;
   fout.open("sample.txt");
   //initiating loop if file is opened
   while (fout) {
      getline(cin, line);
      if (line == "-1")
         break;
      fout << line << endl;
   }
   fout.close();
   ifstream fin;
   fin.open("sample.txt");
   while (fin) {
      getline(fin, line);
      cout << line << endl;
   }
   fin.close();
   return 0;
}

  1. C++ এ লিনাক্সে ফাইল গ্লবিং

  2. C++ এ রেখার প্রতিফলন

  3. C++ এ একটি লাইনে সর্বোচ্চ পয়েন্ট

  4. C++ এ ব্যতিক্রম হ্যান্ডলিং বেসিক