gpt4 book ai didi

c++ - 我创建了自己的智能指针类,我用这个智能指针指向一个类实例,我怎样才能正确返回智能指针

转载 作者:太空宇宙 更新时间:2023-11-04 13:03:47 25 4
gpt4 key购买 nike

我是 C++ 的新手,正在尝试实现其中的一些方法。

我创建了一个智能指针类 CarPtr,如下所示:

template <class Car>
class CarPtr
{
public:
Car *ptr; // Actual pointer
// Constructor
explicit CarPtr(Car *p = nullptr) { ptr = p; }
// Destructor
~CarPtr() { delete(ptr); cout << "CarPtr destructor" << endl;}
// Overloading dereferencing operator
Car &operator *() { return *ptr; }
Car *operator -> () { return ptr; }
};

#endif /* CARPTR_H_ */

然后我创建了 Car 类的实例并使用我的智能指针指向它。

CarPtr<Car> carInfoCreation()
{
CarPtr<Car> p(new Car());
int carId;
int carYear;
double carCost;
String carMake;
String carModel;
cout << "please enter the Id for the car" << endl;
cin >> carId;
p.ptr->setId(carId);

cout << "please enter the Year for the car" << endl;
cin >> carYear;
p.ptr->setYear(carYear);

cout << "please enter the Cost for the car" << endl;
cin >> carCost;
p.ptr->setCost(carCost);

cout << "please enter the Make for the car" << endl;
cin >> carMake;
p.ptr->setMake(carMake);
String getMake = p.ptr->getMake();

cout << "please enter the Model for the car" << endl;
cin >> carModel;
p.ptr->setModel(carModel);
String getModel = p.ptr->getModel();

cout << "Car Info: " << endl;
cout << "Car Id: "<< p.ptr->getId() << endl;
cout << "Car Year: "<< p.ptr->getYear() << endl;
cout << "Car Cost: " << p.ptr->getCost() << endl;
cout << "Car Make: " << getMake << endl;
cout << "Car Model: " << getModel << endl;

ofstream myfile;
myfile.open ("Car 1.txt");
myfile << "Car Id: " << carId << endl;
myfile << "Car Year: " << carYear << endl;
myfile << "Car Cost: " << carCost << endl;
myfile << "Car Make: " << carMake << endl;
myfile << "Car Model: " << carModel << endl;
myfile.close();

return p;
}

创建实例后,我希望返回智能指针 p 并将其放入我创建的智能指针数组中,如下所示:

CarPtr<Car> CarPtrArray[5];
CarPtrArray[0] = carInfoCreation() ;

运行代码后,实例创建成功,可以看到对应的.txt文件。但紧接着,我将看到 Eclipse 显示的错误:

“xxx.exe已经停止工作

一个问题导致程序停止正常工作。如果有可用的解决方案,Windows 将关闭该程序并通知您。”

谁能帮我解决这个问题?如果您需要更多代码或相关信息,请告诉我。

非常感谢!

最佳答案

您的类(class)需要遵循 the Rule of Three/Five/Zero .

否则,按值返回一个会导致未定义的行为:当临时返回对象被销毁(和/或返回的本地对象)时,指针将被删除,但随后调用代码继续使用指针。

关于c++ - 我创建了自己的智能指针类,我用这个智能指针指向一个类实例,我怎样才能正确返回智能指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43176333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com