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

Java ☕ Methods смотреть онлайн

A method is a reusable bit of code that you can activate or call at any point in your code.

Writing a Method
In a previous lesson, we wrote a short program that printed out the temperatures of lab one and lab two. We may want to do this at various points in out final program. Rather than retype this code every time we want to use it, we can put it in a method. Methods are wrapped in curly braces and identified by a name. Let's name our function 'readTemps'.

readTemps {
}
Methods also need a return type. A return type says the datatype of the value returned by the function if any is returned. In this case, the method won't return a value so we will type void.

void readTemps {
}
The last thing a method needs are parameters. A parameter is a special variable that is set every time the method is called. The parameters go inside parentheses right after the method name. Since this method needs no parameters, we will leave the parentheses blank.

void readTemps() {
}
Now, all we need to do is write the code for the method inside the curly brackets.

void readTemps() {

double temp1 = myLab.T1();
double temp2 = myLab.T2();
System.out.println("Temperature 1: " + temp1)
System.out.println("Temperature 2: " + temp2)
}
Now, any time we want to print out the two temperatures, we can just call the method with the statement readTemps(); and the computer will print out the two temperatures just as we did in the previous lesson!



Java Course: https://apmonitor.github.io/begin_java
Course Overview: https://apmonitor.com/che263/index.php/Main/BeginJava
Source Code: https://github.com/APMonitor/begin_java
Temperature Control Lab: https://apmonitor.com/heat.htm

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «Java ☕ Methods» бесплатно и без регистрации, вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

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

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

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