我有一个看起来像这样的结构:
struct bf_t {
bitset<250000> h0;
};
我想知道如何为这个结构分配内存以及如何在我的 main() 中访问 h0 。
我试过这样做:
bf_t *b;
b->h0.set(1);
error: base operand of ‘->’ is not a pointer
bf_t *b ;
b.h0.set(1);
error: request for member ‘h0’ in ‘b’, which is of non-class type ‘long long int’