Switch...case - Arduino Reference
Có thể bạn quan tâm
- English
- Deutsch
- Português (Brasil)
- Language
- functions
- variables
- structure
- Libraries
- IoT Cloud API
- Glossary
The Arduino Reference text is licensed under a Creative Commons Attribution-Share Alike 3.0 License.
Find anything that can be improved? Suggest corrections and new documentation via GitHub.
Doubts on how to use Github? Learn everything you need to know in this tutorial.
Last Revision: Searching...
Last Build: 2024/11/08
Edit This Page Reference > Language > Structure > Control structure > Switchcase switch...case [Control Structure]Description
Like if statements, switch case controls the flow of programs by allowing programmers to specify different code that should be executed in various conditions. In particular, a switch statement compares the value of a variable to the values specified in case statements. When a case statement is found whose value matches that of the variable, the code in that case statement is run.
The break keyword exits the switch statement, and is typically used at the end of each case. Without a break statement, the switch statement will continue executing the following expressions ("falling-through") until a break, or the end of the switch statement is reached.
Syntax
switch (var) { case label1: // statements break; case label2: // statements break; default: // statements break; }Parameters
var: a variable whose value to compare with various cases. Allowed data types: int, char label1, label2: constants. Allowed data types: int, char
Returns
Nothing
Example Code
switch (var) { case 1: //do something when var equals 1 break; case 2: //do something when var equals 2 break; default: // if nothing else matches, do the default // default is optional break; }See also
Từ khóa » Câu Lệnh Switch Case Trong Arduino
-
Switch / Case | Cộng đồng Arduino Việt Nam
-
Hàm Switch Case Trong Arduino - ĐIỆN TỬ TƯƠNG LAI
-
C Cơ Bản: Câu Lệnh Switch Case - DevIOT
-
Cấu Trúc Lệnh Switch Case Trong C++ (có Bài Tập Thực Hành)
-
Bài 9: Cấu Trúc Rẽ Nhánh Bằng If Else Và Switch Case Trong Lập Trình C
-
Khóa Học Lập Trình Robot Arduino Câu Lệnh Switch Case Bài 29
-
Chi Tiết Bài Học Câu Lệnh Switch..case - Vimentor
-
Câu Lệnh Switch Case Và Toán Tử điều Kiện Trong Java - Góc Học IT
-
Thắc Mắc Về Chạy Code Arduino - Programming - Dạy Nhau Học
-
DAY 3 NHẬP Môn Lập TRÌNH ARDUINO - Tài Liệu Text - 123doc
-
Arduino - Câu Lệnh If - Dongthoigian .net
-
Cấu Trúc Rẽ Nhánh Switch ... Case Trong Ngôn Ngữ C++ - STDIO