Home > Java > JavaBase > body text

What is the difference between int and double in java

王林
Release: 2020-05-12 10:56:43
Original
12884 people have browsed it

What is the difference between int and double in java

The differences are as follows:

1. The int data type is 32 bits and the double data type is 64 bits;

2. The default of the int data type The value is 0, and the default value of double data type is 0.0d;

3. The default type of integer variable is int type, and the default type of floating point number is double type.

int type

int data type is a 32-bit, signed integer expressed in two's complement;

The minimum value is -2,147,483,648 ( -2^31);

The maximum value is 2,147,483,647 (2^31 - 1);

Generally, integer variables default to int type;

The default value is 0 ;

Example: int a = 100000, int b = -200000.

(Video tutorial recommendation: java video)

double type

double data type is double precision, 64-bit, Floating point numbers that comply with the IEEE 754 standard;

The default type of floating point numbers is the double type;

The double type also cannot represent precise values, such as currency;

The default value is 0.0d;

Example: double d1 = 123.4.

Recommended tutorial: java entry program

The above is the detailed content of What is the difference between int and double in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!