本文介绍了VS 2013将无法识别二进制文字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将二进制文字分配给数据类型(在boost multiprecision库中)。


 mp :: cpp_int n = 0b01101110000111100000000000110; 

在第一个'0'之后出现红色squigly。是否有可以处理二进制文字的扩展名?

解决方案

该扩展名为VS2015,我怀疑。



I'm trying to assign a binary literal to a datatype (in the boost multiprecision library).

mp::cpp_int n = 0b01101110000111100000000000110;

The red squigly appears after the first '0'. Is there an extension that does handle binary literals?

解决方案

That extension is called VS2015, I would suspect.


这篇关于VS 2013将无法识别二进制文字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-16 21:44