関数からクラス オブジェクトの配列を返す必要があります。これを行うための最良の方法はポインタを使用することであると研究から理解していますが、これは私のプログラム設計と複数の CPP ファイルからこれにアクセスする必要性を考えると最善の方法ですか?
main.cpp
#include <class.h>
#include <functions.h>
int main(){
Class Object[2][]; //define second dimension here?
some_function(); //should return / create the array with filled in elements.
int var = arr[2][3]; // want to be able to do something like this in main
}
関数.cpp
void some_function(){
// assign values
arr[2][3] = 1;
}