Java Control statement -- switch statement and modify witch statement

Source: Internet
Author: User

Java Control statement -- switch statement and modify witch statement

The equivalent judgment of the above if statement can be replaced by switch.

Note that break is usually added after each case, indicating that the current case has been executed; prevent case penetration, that is, continue to execute the case until the break exists.

The following example uses case penetration in turn.

[Example]

New Features of JDK7.0: enhanced switch

Before JDK 7, switch (expression ){......}, The expression result can only be int (which can be converted to byte, short, and char of int), enumeration type.

But in JDK 7, the expression result can also beString.

(Ps: automatic type conversion: small data types can be automatically converted to large data types. Byte (1 byte) → short (2 bytes) → int (4 bytes ).)

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.