私は次のような構造を持っています:
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’