我道歉,因为它可能是一个愚蠢的问题但是: 我想使用一个函数来填充我的矩阵,但我很难将它作为一个参数传递。 有人可以帮忙吗?
答案 0 :(得分:1)
void FillMyMatrix(MyMatrixType& thisIsTheNameOfTheLocalVariableInTheFoo)
{
// fill your matrix called thisIsTheNameOfTheLocalVariableInTheFoo
// let's say the MyMatrixType has an Insert(int, int, int) method.
thisIsTheNameOfTheLocalVariableInTheFoo.Insert(1, 2, 3);
}