C, C + +, how the Java compiler handles uninitialized variables.

Source: Internet
Author: User

In three languages, the initialization of static and global variables defaults to 0. Local variables can be initialized without initialization, and the C language may implicitly initialize it to 0XCC (that is, "debug magic Number") at compile time. Because the compiler is different, the local variables are initialized with different values. This is also done to allow programmers to find the cause of the error faster.

But Java does not initialize local variables, and you cannot manipulate an uninitialized variable.
In the title, the uninitialized, in fact, is equivalent to saying that the variable is not assigned the initial value, that is, the variable is artificially assigned.

The compiler will use different initialization methods for different memory areas, the variables in the stack will not be initialized, the heap (global variables) and static storage (static variables) will be initialized to the corresponding values, such as the int is initialized to 0, the object is initialized to null.

C, C + +, how the Java compiler handles uninitialized variables.

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.