1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include <vector>
#include <string>
#include <iostream>
struct
Person
{
std::string name;
int
age;
std::string bank_ac_no;
Person(
const
std::string& name,
int
years,
const
std::string& ac_no) :
name(name), age(years), bank_ac_no(ac_no) {}
Person() : name(
""
), age(0), bank_ac_no(
""
){}
};
int
main(
int
argc,
char
*argv[])
{
struct
Person p1 = {
"A Smith"
, 71,
"5702750"
};
std::vector<Person> people1(0);
people1.push_back(p1);
return
0;
}
|
運行的時候在push_back那一句報以下的錯誤:
Unhandled exception at 0x50C031CA (msvcr120d.dll) in Test15.exe: 0xC0000005: Access violation reading location 0x391F9350.
試了一下,若是不是push_back自定義的struct,而是push_back一個內置類型(好比int,string)就不會報錯.
究竟是怎麼回事那? 請指教. 謝謝ios
[問題補充] 新建了一個項目, 把上面的代碼拷貝過去,就沒有問題. 檢查了一下新項目和如今的項目,配置是如出一轍的.spa
[答案].net
原來我項目中的其餘文件中也定義了一個struct Person, 把其餘的一個struct改一下名字就行了. code