Java Learning: Coding specifications

Source: Internet
Author: User
Tags split words

Package (packages)

Naming conventions for package names: 1, lowercase 2, at least one level of directory 3, domain inversion writing

Package Baidu;

Package com.baidu.www;

Class (classes)----- Large Hump Method

Naming conventions for class names: capitalize all words in the first letter

Class Mobile

Class Testmobile

Interface (interface)

Naming conventions for interfaces: Capitalize all words in the first letter

Interface Animal;

Method (Methods)

Naming conventions for methods: first letter lowercase, initials of other words in uppercase

Testdemo ()

Variable (variable)----- Small Hump Method

Naming conventions for variables: member variables The first letter is lowercase, the first letter of other words is uppercase, local variables all use lowercase

Setnunber

Name

CONSTANT (constant)

Naming conventions for constants: Use uppercase all, preferably using underscores to split words

Max_size

Array (arrays)

Naming conventions for arrays: first letter lowercase, and first letter of other words capitalized

String[] name;

Java Learning: Coding specifications

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.