Day12: Switch Statement

 Switch Statement

Swich(var - name) //byte, short, int, char, string
{
    Case Value:
                Statement
                Break;
    Case Value:
                Statement
                Break;
    default:
                Statement
}

Comments

Popular posts from this blog

Day4 : Type Conversion and its type

Day18: How java handles deallocation of dynamic block