当我开始运行我的项目时,我遇到了分段错误。
我已经宣布了 2 个不同的课程
Class myfirstclass {
int x[4];
};
在二等
我使用以下命令访问数组“x[4]”
myfirstclass * firstptr;
firstptr -> x[4];
现在,当我分配“firstptr -> x[4];”时 到一个数组做一些计算我得到一个分段错误?
int y[4];
for (int i=0; i<4;i++){
y[i]= firstptr -> x[i]; -> "This statement what caused the segmentation fault."
}
你能帮我解决这个错误吗?