java var declaration code example
Example 1: declare variables java
String hello = "hello";
short one = 12;
int two = 2000;
long number = 2000000;
float decimal = 1.512
double million = 1.387892847395
Bool condition = true;
char a = "a";
Example 2: java variable declaration
java decleration
float simpleInterest;
Example 3: Variables in java
public class StaticVariableExample
{
static int a = 0;
public void add()
{
a++;
}
public static void main(String[] args)
{
StaticVariableExample obj1 = new StaticVariableExample();
StaticVariableExample obj2 = new StaticVariableExample();
obj1.add();
obj2.add();
System.out.println("Object 1 value is: " + a);
System.out.println("Object 2 value is: " + a);
}
}
Example 4: Variables in java
public class LocalVariableExample
{
public void employeeDetails()
{
int empAge = 22;
String name = "Sachin";
}
public static void main(String[] args)
{
LocalVariableExample obj = new LocalVariableExample();
System.out.println("Employee name is : " + name + ", and age : " + empAge);
}
}
Example 5: how to create a variable java
int myVariable = 42;