Java know how much (11) data type conversions

Source: Internet
Author: User

Conversions of data types are divided into automatic conversions and casts. Automatic conversion is a program in the execution of the "quietly" conversion, do not require the user to declare in advance, generally from a low number of bits of the type to a high number of bits conversion; Coercion type conversions must be declared in code and the order of conversion is not restricted.

Automatic data type conversions

Automatic conversions are converted in order from low to high. The priority relationships between different types of data are as follows:
Low---------------------------------------------> High
byte,short,char-> int, long, float---double

Operations, different types of data are converted to the same type first, then the operation, the conversion rules are as follows:

operand 1 Type operand 2 Type the converted type
Byte, short, Char Int Int
Byte, short, char, int Long Long
Byte, short, char, int, long Float Float
Byte, short, char, int, long, float Double Double
Forcing data type conversions

The format of the cast is to add "()" before the data that needs to be transformed, and then add the data type that needs to be converted in parentheses. Some data after transformation operation, the accuracy will be lost, and some will be more accurate, the following example can illustrate this problem.

1  Public classDemo {2  Public Static voidMain (string[] args) {3     intx;4       Doubley;5x = (int) 34.56 + (int) 11.2;//Loss of Precision6y = (Double) x + (Double) 10 + 1;//Improved accuracy7System.out.println ("x=" +x);8System.out.println ("y=" +y);9     }Ten}

Operation Result:

x=45y=56.0

Carefully analyze the above program segment: Since there is a forced type conversion of int before 34.56, 34.56 becomes 34. The same 11.2 becomes 11, so the result of X is 45. There is a cast of type double before x, so the value of x becomes 45.0, and the front of 10 is also coerced to a double type, so it becomes 10.0, so the value of the last Y becomes 56.

Series Articles:

Java know how much (1) Language overview

Java know how much (2) virtual machine (JVM) and cross-platform principle

Java know how much (3) employment direction

Java know how much (4) the difference between J2SE, Java EE, J2ME

Java know how much (5) Build Java development environment

Java know how much (6) The first example of a program

Java knows how many (7) classes and objects

Java know how much (8) class library and its organizational structure

Java know how much (9) Import and Java class search path

Java know how much (10) data types and variables

Java know how much (11) data type conversions

Java know how much (11) data type conversions

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.