Advertisement
Ejejejejejjr

Запись объекта в файл

Dec 29th, 2020
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.92 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <fstream>
  4.  
  5. class Answer
  6. {
  7. public:
  8.     //конструктор по умолчанию
  9.     Answer()
  10.     {
  11.         x = y = z = 0;
  12.     }
  13.     //перегрузка конструктора
  14.     Answer(int x, int y, int z)
  15.     {
  16.         this->x = x;
  17.         this->y = y;
  18.         this->z = z;
  19.     }
  20.    
  21.     void Print()
  22.     {
  23.         std::cout << "x - " << x << "\ny - " << y << "\ny - " << y << std::endl;
  24.     }
  25.    
  26.     int x, y, z;
  27.    
  28. };
  29.  
  30.  
  31.  
  32. void Write(std::string path, Answer &ans)
  33. {
  34.     std::ofstream fs;
  35.     fs.open(path, std::ofstream::app);
  36.    
  37.     if(fs.is_open())
  38.     {
  39.         std::cout << "Файл открыт!" << std::endl;
  40.         fs.write(/*приведение ссылки на объект к указателю на char*/(char*)&ans, /*размер элементов*/sizeof(Answer));
  41.     }
  42.    
  43.     fs.close();
  44.    
  45. }
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52. int main(int argc, char *argv[])
  53. {
  54.     setlocale(LC_ALL, "Rus");
  55.     srand(time(NULL));
  56.    
  57.     Answer ans(5, 10, 191);
  58.    
  59.    
  60.     Write("file.txt", ans);
  61.    
  62.    
  63.    
  64.     return 0;
  65. }
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement