Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在犰狳矩阵实例上调用 malloc 的约定是什么。
如果我想为 100 x 100 矩阵预分配内存,这是否正确?
fmat* squareMat = (fmat*)malloc(sizeof(fmat(100,100)));
不,这不是正确的方法。malloc在 C++ 程序中根本没有位置。分配对象的正确方法是这样的:
malloc
fmat squareMat(100, 100);
这可以通过阅读文档很容易地看到。