Java Variable Declaration

Source: Internet
Author: User

/**java Naming conventions
* variable, method name:
* First Letter Lowercase + hump named for example: Agenew/runrun ();
* Constant: Uppercase + underline for example: Max_speed
* Class Name: First Letter Capital + hump Name Hair Example: Goodmain
* */

/**
* Variables are the most basic storage unit of the program
* Local Variables: variable scopes defined within a method or statement block within the scope of this method
* Must be initialized before use
* */
public static void TestVariable () {
int x,y,z;//declare more than one at a time
int a;//declares a suggestion that each line declares a
int b=12;//Direct Initialization
Final int max_speed=120;//constants can only be initialized once generally defined as uppercase use "_" to differentiate two words
}

Java Variable Declaration

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.