其他分享
首页 > 其他分享> > C文字中的定界符tens和单位

C文字中的定界符tens和单位

作者:互联网

Java中,我可以执行以下操作:

int i = 1_200_200;

我如何在c中做同样的事情?我的意思是我应该用什么代替下划线?

解决方法:

从C 14开始,您可以为integer literal使用单引号(‘)以提高可读性,例如

int i = 1'200'200;

Optional single quotes(‘) may be inserted between the digits as a
separator. They are ignored by the compiler.

标签:c,delimiter,literals
来源: https://codeday.me/bug/20191013/1906095.html