Answers for "type of value java"

3

check type of variable java

public class MyClass {
    public static void main(String args[]) {
        int x = 5;
        System.out.println(((Object)x).getClass().getSimpleName());

    }
}
Posted by: Guest on December-08-2021
4

type variable java

public class A  
{  
    static int m=100;//static variable  
    void method()  
    {    
        int n=90;//local variable    
    }  
    public static void main(String args[])  
    {  
        int data=50;//instance variable    
    }  
}//end of class
Posted by: Guest on July-16-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language