i am new to java and i see some complicated code while see solution for my program on the net
int a=5;
int b=10;
first:{
second:{
third:{
if(a==b>>1){
break second;
}
System.out.println(a);
}
System.out.println(b);
}
can anybody explain me what is the meaning of this type of code and how we deeply use it in program and i cant find this type of code in my java book please help me thanks in advance