本文介绍了错误C2248。 Visual Studio 2010的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我收到此错误,虽然我没有在我的代码中使用任何类。我认为我的问题在那里但不确切知道它是什么
void openFile(ifstream infile,int ** matrix,int y,int x){...
mstrix [y] [x] = atoi(a_string.cstr())...
I get this error although i haven t used any classes in my code. i think that my problem is there but don t know exactly what it is
void openFile(ifstream infile,int **matrix,int y,int x){...
mstrix[y][x]=atoi(a_string.cstr())...
推荐答案
这篇关于错误C2248。 Visual Studio 2010的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!