RUVIDEO
Поделитесь видео 🙏

CP1344: PROGRAMMING IN JAVA - LECTURE -24-DECISION-MAKING STATEMENTS (THE SWITCH STATEMENT)-BCA- S3

📁 Лайфстайл 👁️ 17 📅 05.12.2023

The Switch Statement

Java has a built-in multiway decision statement known as switch. The switch statement tests the value of a given variable (or expression) against a list of ease values and when a match is found, a block of statements associated with that case is executed.
The expression is an integer expression or characters. value-1, value-2 .... are constants or constant expressions (evaluable to an integral constant) and are known as case labels, Each of these values should be unique within a switch statement. block-1, block-2 .... are statement lists and may contain
zero or more statements. There is no need to put braces around these blocks but it is important to note that case labels end with a colon (:).
When the switch is executed, the value of the expression is successively compared against the values value-1, value-2, .... if a case is found whose value matches with the value of the expression, then the block of statements that follows the case are executed.

The break statement at the end of each block signals the end of a particular case and causes an exit from the switch statement, transferring the control to the statement-x following the switch.
The default is an optional case. When present, it will be executed if the value of the expression does
not match with any of the case values. If not present, no action takes place when all matches fail and the control goes to the statement-x.

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «CP1344: PROGRAMMING IN JAVA - LECTURE -24-DECISION-MAKING STATEMENTS (THE SWITCH STATEMENT)-BCA- S3», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.

Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!

Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.