Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
510 views
in Technique[技术] by (71.8m points)

c++11 - Initializing c++ std::bitset at compile time

I'm trying to initialize a std::bitset<256> at compile time with some of its indices, lets say 50-75 and 200-225 set to 1.

Based on http://en.cppreference.com/w/cpp/utility/bitset/bitset It looks like my 2 options are:

constexpr bitset();
constexpr bitset( unsigned long long val ); 

Could someone shed light on how I would initialize my bitset considering the second constructor wouldn't work for large indices?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Bitset constructor constexpr bitset( unsigned long long val ) is limited in the sense that it cannot pre-set bits from position 64 upwards (as unsigned long long is a 64 bit value). Any bit higher than 64 will be initialized with 0, as the following example shows (cf. bitset constructors):

std::bitset<70> bl(ULLONG_MAX); // [0,0,0,0,0,0,1,1,1,...,1,1,1] in C++11

If you want to initialize also the higher bits in the constructor, I think you won't get around to use an initializer of type string or char*, i.e. bitset constructors of type (3) or (4).

Of course, for a bitset of length 256, the initializer string gets long:

std::bitset<256> myBitset("111100000011111000001110000010101000100000100010010000100000000001111");
// I did not count the digits...

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...