type variable java

Solutions on MaxInterview for type variable java by the best coders in the world

showing results for - "type variable java"
Laura
15 Jan 2020
1public class A  
2{  
3    static int m=100;//static variable  
4    void method()  
5    {    
6        int n=90;//local variable    
7    }  
8    public static void main(String args[])  
9    {  
10        int data=50;//instance variable    
11    }  
12}//end of class