в деструктор засунуть
#pragma once
#include <iostream>
#include <Windows.h>
#include <vector>
#include <algorithm>
#include <fstream>
#include <conio.h>
#include <iomanip>
#include "MaxGoods.h"
#include "China.h"
using namespace std;
class Goods {
protected:
string name;
int num;
int price;
int amount;
string data;
string country;
public:
Goods() {
name = "";
num = 0;
price = 0;
amount = 0;
data = "";
country = "";
}
Goods(string name, int num, int price, int amount, string data, string country) {
this->name = name;
this->num = num;
this->price = price;
this->amount = amount;
this->data = data;
this->country = country;
}
void cinData() {
cout << "Введите название, номер, стоимость, количество, дату поставки товара и страну" << endl;
cin >> (this->name) >> (this->num) >> (this->price) >> (this->amount) >> (this->data) >> (this->country);
}
void print() const {
cout << "|" << setfill('=') << setw(107) << "|" << endl;
cout << "|Название: " << setfill(' ') << setw(15) << name << "; Номер: " << setfill(' ') << setw(2) << num << "; Стоимость: " << setfill(' ') << setw(4) << price << "; Количество: " << setfill(' ') << setw(3) << amount << "; Дата: " << setw(10) << data << "; Страна: " << setfill(' ') << setw(8) << country << "|" << endl;
cout << "|" << setfill('=') << setw(107) << "|" << endl;
ofstream outfile;
outfile.open("C:\\labs\\course.txt", ios::app);
if (outfile.is_open())
{
outfile << "|" << setfill('=') << setw(107) << "|" << endl;
outfile << "|Название: " << setfill(' ') << setw(15) << name << "; Номер: " << setfill(' ') << setw(2) << num << "; Стоимость: " << setfill(' ') << setw(4) << price << "; Количество: " << setfill(' ') << setw(3) << amount << "; Дата: " << setw(10) << data << "; Страна: " << setfill(' ') << setw(8) << country << "|" << endl;
outfile << "|" << setfill('=') << setw(107) << "|" << endl;
outfile.close();
}
else
{
cout << "Ошибка при открытии файла";
}
}
void d_data(){
delete name;
delete num;
delete price;
delete amount;
delete data;
delete country;
}
};
ты для name вызывал new?
Зачем d_data? Что она делает, чего не делает декструктор?
Обсуждают сегодня