Java Basic interview question: Can the switch statement function on a byte, can it function on a long, and function on a string?

Source: Internet
Author: User

 PackageCom.swift; Public classSwitch_test { Public Static voidMain (string[] args) {/** Can the switch statement function on a byte, can it function on a long, or can it be on a string? */        byteZijie = 3;        System.out.println (Zijie); LongChangzheng=3; Switch(Changzheng) {//cannot switch on a value of type long.         CaseA: System.out.println ("This is a.");  Break;  Case0: System.out.println ("This is 0 int");  Break;  Case3: System.out.println ("This is 0 int");  Break; default: System.out.println ("This is default."); }    }}

A byte short char is both a type that can be implicitly int, and their wrapper class

Long No.

String is also possible, requiring a string type in case

 PackageCom.swift; Public classSwitch_test { Public Static voidMain (string[] args) {/** Can the switch statement function on a byte, can it function on a long, or can it be on a string? */        byteZijie = 3;        System.out.println (Zijie); LongChangzheng=3; String Str= "ABC"; Switch(str) {//cannot switch on a value of type long.         Case"AB": System.out.println ("This is a.");  Break;  CaseA: System.out.println ("This is 0 int");  Break;  Case"ABC": System.out.println ("This is ABC int");  Break; default: System.out.println ("This is default."); }    }}

Java Basic interview question: Can the switch statement function on a byte, can it function on a long, and function on a string?

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.