Variable Types In Java

Variable Types In Java

Based on the data type associated with them they are basically of two Variable types:

Numeric types:
Integer type:The variables with which int data type is used belong to this type.
int x;

Here int is the data type and x is the variable.

Float type: Similarly the variables which store all real numbers belong to this type.
Eg.

float x;

Non numeric type:
1.character type:It holds any character(an alphabet,a digit or a special character).

Eg. char c;

2.String type:It holds many characters at a time;

Eg. String fan;

We have three kinds of variables in java:

Local variables:The variables whose scope is limited to the methods ,constructor or block where it is declared.They don’t have any initial value so the must be initialized after declaration.
Example:
[java]

class Fan

{

public void fanspeed()

{

int speed=0;

speed=speed+2;

System.out.println(“The speed of the fan is:”+ speed);

}

public static void main(String args[])

{

Fan f=new Fan();

f.fanspeed();

}

}
[/java]

Output:

The speed of the fan is:2

In the above example speed is the local variable.Its scope is limited to fanspeed() method.

Instance variables:The variables declared inside the class but outside the method or block.
Example:
[java]

class Fan

{

public String color;

public Fan(String c)

{

color=c;

}

public void printfan()

{

System.out.println(“The color of the fan is:”+ color);

}

public static void main(String args[])

{

Fan f=new Fan(“Black”);

f.printfan();

}

}
[/java]
Output:

The color of the fan is: black

In the above example color is the instance variable.

Static variables:Like instance variables they are declared inside the class but outside the method or block but they use the static keyword with them. There will only be one copy of these variables.
Example:
[java]

class Fan

{

static int speed;

public static void main(String args[])

{

speed=4;

System.out.println(“The speed of the fan is:”+4);

}
[/java]

Output:

The speed of the fan is:4

Here speed is the static variable.

Related Article

About The Variable Types In Java

Project Name: Variable Types
Language/s Used: JAVA
Database: None
Type: Desktop Application
Developer: IT SOURCECODE
Updates: 0
Variable Types In Java– Project Information

Leave a Comment