002
20.09.2003, 09:45 Uhr
Tommix
|
Hallo, das müsste im Prinzip so gehen:
C++: |
#include "stdafx.h" #include <afxtempl.h>
int main() { AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0);
CArray<float, float> myArray[8];
myArray[3].Add(3.14);
float x = myArray[3][0];
return 0; }
|
Methoden wie SetSize, RemoveAll etc. musst Du in einer schleife für alle acht Spaten ausführen.
Gruss, Tommix |