Initialization and default values in Java, wrapper classes and basic types

Source: Internet
Author: User

when a variable is used as a member of a class, Java ensures that its initial value is given to prevent program run-time Errors

Data Type Initial value
Byte 0
Short 0
Int 0
Long 0L
Char ' u0000 '
Float 0.0f
Double 0
Boolean False
All reference types Null

Wrapper classes for basic data types are reference types

Basic type

Size (bytes)

Default value

Encapsulation class

Byte

1

(byte) 0

Byte

Short

2

(short) 0

Short

Int

4

0

Integer

Long

8

0L

Long

Float

4

0.0f

Float

Double

8

0.0d

Double

Boolean

-

False

Boolean

Char

2

\u0000 (NULL)

Character

If one side is a wrapper class, the other side is the basic type, or use the <, >, <= and other comparators, the value comparison will be done, if it is found that both sides are objects, it will directly compare the reference, not the value

Initialization and default values in Java, wrapper classes and basic types

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.