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

Why public static in main method? | JAVA | Subha Sree

📁 Обучение 👁️ 16 📅 05.12.2023

public static void main(String[] args) is the most important Java method. When you start learning java programming, this is the first method you encounter.
static
When java runtime starts, there is no object of the class present. That’s why the main method has to be static so that JVM can load the class into memory and call the main method. If the main method won’t be static, JVM would not be able to call it because there is no object of the class is present.
public
This is the access modifier of the main method. It has to be public so that java runtime can execute this method. Remember that if you make any method non-public then it’s not allowed to be executed by any program, there are some access restrictions applied. So it means that the main method has to be public.
void
Java programming mandates that every method provide the return type. Java main method doesn’t return anything, that’s why it’s return type is void. This has been done to keep things simple because once the main method is finished executing, java program terminates. So there is no point in returning anything, there is nothing that can be done for the returned object by JVM.

For more videos
Representation of Linked List and Naming conventions?
https://youtu.be/d8wkH7nQysQ

Swapping Logic?
https://youtu.be/qnhKtnnVxNk

Structure of C++ Program
https://youtu.be/W02AnLJRbp0

C++ Input Output Operations
https://youtu.be/N2qa7oPwvo0

Features of JAVA
https://youtu.be/ZmztJUgs_cU

Why we use the concept of Linked List?
https://youtu.be/4RlYtswX47s

Introduction to JAVA and comparison of JAVA and C++
https://youtu.be/FFl1V1PdMf0

Comparison of C and C++
https://youtu.be/BKKiYqQxRkM

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «Why public static in main method? | JAVA | Subha Sree», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

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

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

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