本文介绍了负整数文字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




是否有可能有负整数字面值或只有正数?


据我所知,下面的代码将是一个正整数

字面值和一元负数运算符。


x = -3.2;


谢谢,

Ivan


解决方案



实际上,它是负*双*字面。



原谅我。它根本不是文字。它是一个表达式(未定义

类型,因为你没有定义x)。


-3.2是负双字面值。




原谅我。它根本不是文字。这是一个表达式(未定义

类型,因为你没有定义x)。


-3.2是负双字面值。



我认为-3.2是双浮点文字。


Hi,

Is it possible to have negative integer literal or only positive?

As far as I understand, the code below would be a positive integer
literal and the unary negative operator.

x = -3.2;

Thanks,
Ivan
http://www.0x4849.net

解决方案

Actually, it''s a negative *double* literal.


Pardon me. It''s not a literal at all. It''s an expression (of undefined
type, since you don''t define x).

-3.2 is a negative double literal.



Pardon me. It''s not a literal at all. It''s an expression (of undefined
type, since you don''t define x).

-3.2 is a negative double literal.

I thought -3.2 was a double float literal.


这篇关于负整数文字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 10:39