Java knowledge point (2)

Source: Internet
Author: User

Variables and constants
1. Variable: a sequence of letters and numbers starting with a letter.
1.1 letters and numbers here are wider than most other programming languages.
1.2 is case sensitive and the length is unlimited.
1.3 if you want to know which unicode characters belong to java letters, you can use isJavaIdentifierStart and isJavaIdentifierPart in the Character class to check.
1.4 variables must be used only after initialization; otherwise, java considers them wrong.
For example, int x;
System. out. println (x); // Error -- variable is not initialized
1.5 java does not differentiate the Declaration and definition of variables.
2. constants: Use final life constants in java.
The 2.1 keyword final indicates that the variable can be assigned only once. Once assigned, the variable name cannot be modified.
2.2 In java, a constant is often used in multiple methods in the class and usually becomes a class constant. You can use the static final keyword to set class constants.
2.3 const is a reserved keyword in java and is not used. final must be used in java to define constants.

This article is from the "Myworld" blog

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.