Java Data type conversions (auto-transform and cast)

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 converted Type

Byte, short, Charintint

Byte, short, char, Intlonglong

Byte, short, char, int, longfloatfloat

Byte, short, char, int, long, floatdoubledouble

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 class Demo {

2. public static void Main (string[] args) {

3. int x;

4. Double y;

5. x = (int) 34.56 + (int) 11.2; Loss of precision

6. Y = (double) x + (double) 10 + 1; Improved accuracy

7. System.out.println ("x=" + x);

8. System.out.println ("y=" + y);

9.}

10.}

Operation Result:

X=45

y=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. (Edit: Lelinpeng Source: Network)

Java Data type conversions (auto-transform and cast)

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.