Scope of variables in Java
Published in
Jan 17, 2024
class P005_Scope
{
public static void main(String args[])
{
{
int i=100;
}
// line below gives the error: can not resolve symbol i
System.out.println(i);
}
}
class P005_Scope
{
public static void main(String args[])
{
{
int i=100;
}
// line below gives the error: can not resolve symbol i
System.out.println(i);
}
}
Learn Java Programming language with short coding examples