The difference between Java byte and Char

Source: Internet
Author: User

One

Byte is a byte data type, a signed, 1 byte, size range of -128--127

Char is a character data type, unsigned, occupies 2 bytes (Unicode code), size range is 0-65535


Conversion principles

Convert from low precision to high precision
BYTE, short, int, long, float, double, char
Note: Two char operations are automatically converted to int, and when char and other types are operated, they are automatically converted to int, and then other types of auto-conversions


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 conversion conversions are converted from lowest to highest in order. 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
The format for forcing a data type conversion 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) + 1; //Improve 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.

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

The difference between Java byte and Char

Related Article

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.