名前空間の配列を作成するにはどうすればよいですか?そして、それは長い間のように思えるので、これが不可能な場合は、配列にできる名前空間に似た何かがありますか?名前空間の配列を作成するにはどうすればよいですか?
名前空間、それが助け場合は、これらの変数が含まれています
const int maxx=// depends on the particular namespace
// I need an array to go through each namespace and
// pick out the variable
const int maxy=// depends on particular namespace
//prgm is a class I made
prgm sector[maxx][maxy];
// another array of prgms. int is my shorthand of saying "depends on
// particular namespace", so is char.
prgm programs[int]={prgm1(int,int,char),prgm2(int,int,char)...
だから、任意のヘルプは歓迎されるであろう。
あなたはどのような言語について話していますか? – Eddie