In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)05/31 Report--
This article mainly introduces the relevant knowledge of "what is the syntax for the use of switch in java". The editor shows you the operation process through an actual case. The method of operation is simple and fast, and it is practical. I hope this article "what is the syntax for the use of switch in java" can help you solve the problem.
Switch (expression)
{
Case constant expression 1: statement 1
....
Case constant expression 2: statement 2
Default: statement
}
Default means to execute it if there is no case that conforms to it. Default is not necessary.
Statements after case can be without curly braces.
The judgment condition of the switch statement can accept int,byte,char,short, but not other types.
Once the case matches, the following program code will be executed sequentially, regardless of whether the following case matches or not, until the break is encountered. Using this feature, several case can execute unified statements.
For example:
Switch (x)
{
Case 1:
Case 2:
Case3: System.out.println ("")
Break
Case4: System.out.println ("hehe")
}
This is the end of the introduction to "what is the syntax for the use of switch in java". Thank you for reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.