C ++二进制常数/字面 [英] C++ binary constant/literal

查看:235
本文介绍了C ++二进制常数/字面的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用的是一个众所周知的模板允许二进制常量

I'm using a well known template to allow binary constants

template< unsigned long long N >
struct binary
{
  enum { value = (N % 10) + 2 * binary< N / 10 > :: value } ;
};

template<>
struct binary< 0 >
{
  enum { value = 0 } ;
};

所以,你可以这样做二进制LT; 101011011> ::值。不幸的是这个有20位的极限无符号很长很长。

So you can do something like binary<101011011>::value. Unfortunately this has a limit of 20 digits for a unsigned long long.

任何人是否有更好的解决方案?

Does anyone have a better solution?

推荐答案

这是否工作,如果你有一个主导你的二进制值为零?前导零进行恒定八进制,而不是小数。

Does this work if you have a leading zero on your binary value? A leading zero makes the constant octal rather than decimal.

这导致了一种方式来挤一对夫妇更多的数字出该解决方案 - 总是以零开始你的二进制常量!然后用8的替换10在你的模板。

Which leads to a way to squeeze a couple more digits out of this solution - always start your binary constant with a zero! Then replace the 10's in your template with 8's.

这篇关于C ++二进制常数/字面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆