我似乎找不到任何解决方案。
我有一个包含矩阵的“路线”类型。如果我这样做:
cout << route << endl;
它可以打印内存但是如果我尝试
cout << route[1][1] << endl;
程序刚刚结束,没有任何错误或任何东西。调试说:“(暂停:信号:SIGSEGV:分段错误)”
这是代码:
//structure is a type I created
Structure ***route = list->searchRoute(startPoint, destination, time);
//should return a matrix
cout << "Avaible routes: \n" << endl;
for(int i = 0; i < 5;i++)
cout << route[1][1]->startPoint << endl;