You are on page 1of 6

1.

5 Variables and Primitive Data


Types
Variables
• Variables provides us with named storage that our
programs can manipulate
• Specific type, which determines the size and layout of the
variables memory
• Range of values that can be stored within that memory
• Set of operations that can be applied to the variable.
• Example
– int a, b, c; // Declares three ints, a, b, and c.
– int a = 10, b = 10; // Example of initialization
– byte B = 22; // initializes a byte type variable B.
– double pi = 3.14159; // declares and assigns a value of PI.
– char a = 'a'; // the char variable a is initialized with value 'a'
The Java programming language defines the following kinds of variables:

• Instance Variables (Non-Static Fields) Technically speaking, objects store their individual
states in "non-static fields", that is, fields declared without the static keyword. Non-static
fields are also known as instance variables because their values are unique to
each instance of a class (to each object, in other words); the currentSpeed of one bicycle is
independent from thecurrentSpeed of another.

• Class Variables (Static Fields) A class variable is any field declared with the static modifier;
this tells the compiler that there is exactly one copy of this variable in existence, regardless of
how many times the class has been instantiated. A field defining the number of gears for a
particular kind of bicycle could be marked as static since conceptually the same number of
gears will apply to all instances. The code static int numGears = 6; would create such a static
field. Additionally, the keyword final could be added to indicate that the number of gears will
never change.

• Local Variables Similar to how an object stores its state in fields, a method will often store its
temporary state in local variables. The syntax for declaring a local variable is similar to
declaring a field (for example, int count = 0;). There is no special keyword designating a
variable as local; that determination comes entirely from the location in which the variable is
declared — which is between the opening and closing braces of a method. As such, local
variables are only visible to the methods in which they are declared; they are not accessible
from the rest of the class.

• Parameters Recall that the signature for the main method is public static void main(String[]
args). Here, the args variable is the parameter to this method. The important thing to
remember is that parameters are always classified as "variables" not "fields". This applies to
other parameter-accepting constructs as well (such as constructors and exception handlers)
that you'll learn about later in the tutorial.
Local variable
• Example
• Here, age is a local variable. This is defined inside pupAge()method and its scope is
limited to only this method.
• public class Test { public void pupAge() { int age = 0; age = age + 7;
System.out.println("Puppy age is : " + age); } public static void main(String args[]) {
Test test = new Test(); test.pupAge(); } }This will produce the following result −
– Output
– Puppy age is: 7 Example

• Following example uses age without initializing it, so it would give an error at the
time of compilation.
• public class Test { public void pupAge() { int age; age = age + 7;
System.out.println("Puppy age is : " + age); } public static void main(String args[]) {
Test test = new Test(); test.pupAge(); } }This will produce the following error while
compiling it −
– Output
– Test.java:4:variable number might not have been initialized age = age + 7;
– 1 error
Instance variable
• import java.io.*;
public class Employee {
// this instance variable is visible for any child class.
public String name;
// salary variable is visible in Employee class only.
private double salary;
// The name variable is assigned in the constructor.
public Employee (String empName) {
name = empName; }
// The salary variable is assigned a value.
public void setSalary(double empSal) { salary = empSal; }
// This method prints the employee details.
public void printEmp() { System.out.println("name : " + name ); System.out.println("salary :" + salary); }
public static void main(String args[]) {
Employee empOne = new Employee("Ransika");
empOne.setSalary(1000);
empOne.printEmp();
}
}

Output:

name : Ransika
salary :1000.0
Static variable
• Example
import java.io.*;

public class Employee {


// salary variable is a private static variable private static double salary;
// DEPARTMENT is a constant
public static final String DEPARTMENT = "Development ";
public static void main(String args[]) {
salary = 1000;
System.out.println(DEPARTMENT + "average salary:" + salary);
}}

output:
Development average salary:1000

You might also like