gpt4 book ai didi

c++ - 错误访问冲突写入位置 0x00229C20。尝试在控制台中输入字符串时

转载 作者:行者123 更新时间:2023-11-30 05:21:47 30 4
gpt4 key购买 nike

我试图在我的 C++ 代码中输入一个字符串,当我运行时,我总是收到以下错误:在 assignment-1.exe 中的 0x0F5023F5 (msvcp140d.dll) 抛出异常:0xC0000005:访问冲突写入位置 0x00229C20。如果有人可以帮助我,我会在下面发布我的代码,那就太好了。请注意,我已经知道我尝试访问您无法访问的内存位置时遇到问题,我只是不知道如何解决它.

HEADER FILE:
#ifndef item_H
#define item_h

class item
{
private:
//attributes
int itemID;
char itemName[20];
float itemcost;
float itemprice;
//utility function
float calcPrice();

public:
//constructor
item(int = 000, char[] = "itemUnknown", float = 0,float = 0);
//destructor
~item();
//set functions
void setAll(int, char[], float, float);
void setID(int);
void setName(char[]);
void setCost(float);
//get function
int getID();
float getcost();
float getprice();
void getname();
//print function
void print();
};
#endif

CPP:

#include "Dariush.h"
#include <iostream>
#include <iomanip>
#include<string>
using namespace std;
//constructor will set attributes
item::item(int ID, char n[] , float c,float p)
{


setID(ID);
setName(n);
setCost(c);
setAll(ID, n, c, p);

}
//destructor will print destroing two objects
item::~item()
{
cout << "destroing two objects : " << " " << itemName << " "
<< " & " << itemName << endl;
}
//set functions :
void item::setID(int ID)
{
cout << "please enter the item's ID : " << endl;
cin >> ID;

}
void item::setName(char n[])
{
cout << "please enter the item's name" << endl;
cin.ignore();
cin.getline(n, 20);


}
void item::setCost(float c)
{
cout << "please enter the item's cost : " << endl;
cin >> c;
}
void item::setAll(int ID, char n[], float c, float p)
{
itemID = (ID > 0 && ID < 999) ? ID : 0;
strcpy_s(itemName, n);
itemcost = (c > 0) ? c : 0;
calcPrice();

}
//get functions :
int item::getID()
{
return itemID;
}
float item::getcost()
{
return itemcost;
}
float item::getprice()
{
return itemprice;
}
void item::getname()
{
cout << itemName << endl;
}
//print function :
void item::print()
{
cout << "ID : " << itemID << endl
<< "Name : " << itemName << endl
<< "cost : " << itemcost << endl
<< "price : " << itemprice << endl;
}
// utility function for price callculation :
float item::calcPrice()
{
if (itemcost < 1000)
{
itemprice = itemcost + (itemcost*0.1);
}
else
itemprice = itemcost + (itemcost*0.2);
return itemprice;
}

MAIN.CPP:
#include "Dariush.h"
#include <iostream>
#include<string>
using namespace std ;
void main()
{
item i1;
item i2;
i1.print();
i2.print();
}

感谢您的协助。

最佳答案

让我们仔细看看这三个函数声明:

item(int = 000, char[] = "itemUnknown", float = 0,float = 0);
void setAll(int, char[], float, float);
void setName(char[]);

这里的问题是您声明的字符“数组”参数根本不是真正的数组。相反,它们是指针。声明参数时,例如char n[] 实际上被编译器翻译成 char *n

构造函数声明使指针指向常量字符串文字""。常量字符串文字的重要之处在于它们确实是常量。尝试修改字符串文字会导致未定义的行为。并更改此文字是您尝试使用 setName 函数中的 cin.getline(n, 20) 调用进行的操作。不仅如此,您还告诉 cin.getline 函数读取超出字符串文字的内容。

简单的解决方案是将 setName 读入成员变量 itemName

关于c++ - 错误访问冲突写入位置 0x00229C20。尝试在控制台中输入字符串时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39936171/

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