Local, Static and Instance variables in Java | Automation Testing Guide

preview_player
Показать описание
Java Fundamentals
Java Programming
Java Variables
Local variable, Static Variable, Instance Variable.
Automation Testing Guide

Example code:

package helloWorld;

public class Test {

int a= 10; // class level variable
static int b = 23; // Static variable




public static void main(String args[]){
Test obj = new Test();
int c = 25; // local variable







}


}
Рекомендации по теме