2016-11-06 63 views
0

如何以便攜方式編寫以避免縮小轉換範圍?避免縮小bitset模板的轉換範圍

#include <bitset> 
#include <iostream> 
#include <climits> 

template <typename T> 
auto int_to_bitset(T x) 
{ 
    //return std::bitset<sizeof(T)*CHAR_BIT>{x}; // does not work, narrowing conversion to unsigned type 
    //return std::bitset<sizeof(T)*CHAR_BIT>{static_cast<unsigned int>(x)}; // might not have the same size as T 
    //return std::bitset<sizeof(T)*CHAR_BIT>{static_cast<unsigned T>(x)}; // What I would like to do, but does not work. I've never seen so many errors. 
    return std::bitset<sizeof(T)*CHAR_BIT>(x); // works, but selects unsigned long long for the constructor's parameter on my system. Can this conversion be relied on? 
} 

int main() 
{ 
    std::cout << int_to_bitset<short>(1 ) << '\n'; 
    std::cout << int_to_bitset<short>(-1 ) << '\n'; 
    std::cout << int_to_bitset  (1 ) << '\n'; 
    std::cout << int_to_bitset  (-1 ) << '\n'; 
    std::cout << int_to_bitset  (1L) << '\n'; 
    std::cout << int_to_bitset  (-1L) << '\n'; 
    std::cout << int_to_bitset  (1LL) << '\n'; 
    std::cout << int_to_bitset  (-1LL) << '\n'; 
} 

產地:

0000000000000001 
1111111111111111 
00000000000000000000000000000001 
11111111111111111111111111111111 
00000000000000000000000000000001 
11111111111111111111111111111111 
0000000000000000000000000000000000000000000000000000000000000001 
1111111111111111111111111111111111111111111111111111111111111111 
+0

怎麼樣'的std :: make_unsigned'?似乎工作:http://coliru.stacked-crooked.com/a/ada1221fa10574d3 –

+0

@ m.s。完美的作品。即使在VS2015上。 :) – wally

回答

1

您可以使用std::make_unsigned

template <typename T> 
auto int_to_bitset(T x) 
{ 
    return std::bitset<sizeof(T)*CHAR_BIT>{static_cast<std::make_unsigned_t<T>>(x)}; 
} 

live example