I'm building a class that requires a couple of arrays. They're fairly big, and their contents require a bit of calculation, so it's doubtful I can do it at compile time (pity). If I declare the arrays static, is there any trick to initializing them during construction?
Or would a better approach be to put the arrays in a class of their own and just access them with get functions?