Numeric Values Representation in Java: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 16: Line 16:


There are no <code>byte</code> literals, but any <code>int</code> literal that falls within the range of a byte can be assigned to a byte variable.
There are no <code>byte</code> literals, but any <code>int</code> literal that falls within the range of a byte can be assigned to a byte variable.
=TODO=
<font color=darkgray>
* Primitive Types
* Wrapper Types, auto-boxing.
* Number https://www.geeksforgeeks.org/java-lang-number-class-java/
* BigInt
* https://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html
* https://docs.oracle.com/javase/tutorial/java/data/numberclasses.html
* https://www.inf.unibz.it/~calvanese/teaching/06-07-ip/lecture-notes/uni04.pdf
* https://www.ntu.edu.sg/home/ehchua/programming/java/datarepresentation.html
</font>

Revision as of 19:19, 6 April 2020

Internal

Primitive Types

Integral Primitive Type

Integral Primitive Types

Floating Point Primitive Type

Floating Point Primitive Types

Literals

There are no byte literals, but any int literal that falls within the range of a byte can be assigned to a byte variable.