struct
私は2つのを定義しました
class foo() {
public:
struct spatialEntry {
bool block;
CoherenceState_t state;
};
struct accumulationEntry {
uint64_t offset;
std::vector<spatialEntry> pattern;
};
std::vector<int> v;
std::list<accumulationEntry> accumulationTable;
foo() {
v.resize(16);
}
};
のサイズを のstd::vector<spatialEntry>
ように 16に初期化しますv
。どうやってやるの?