Scope & Lifetime Of Variables | ICSE Computer Applications | Java & BlueJ

preview_player
Показать описание
Scope refers to the visibility of the variables. It means in which parts of the program we can see and use our variable. Java has 2 types of scopes - class scope and method scope. This video explains about the scope and lifetimes of variables in Java. It focusses on method scope and includes BlueJ programs to show the concepts.

Рекомендации по теме
Комментарии
Автор

for(int i=1; i>0; i++)
System.out.println("Thank you sir");

Radha_Krishna_RM