Scope and Access¶
The scope of a variable is defined as where a variable is accessible or can be used. The scope is determined by where you declare the variable when you write your programs. When you declare a variable, look for the closest enclosing curly brackets { } – this is its scope.
Java has 3 levels of scope that correspond to different types of variables:
Class Level Scope for instance variables inside a class.
Method Level Scope for local variables (including parameter variables) inside a method.
Block Level Scope for loop variables and other local variables defined inside of blocks of code with { }.
The image below shows these 3 levels of scope.
public class Name { private String first; public String last; public Name(String theFirst, String theLast) { String firstName = theFirst; first = firstName; last = theLast; } }
public class Name { private String first; public String last; public Name(String theFirst, String theLast) { String firstName = theFirst; first = firstName; last = theLast; } }
Local variables are variables that are declared inside a method, usually at the top of the method. These variables can only be used within the method and do not exist outside of the method. Parameter variables are also considered local variables that only exist for that method. It’s good practice to keep any variables that are used by just one method as local variables in that method.
Instance variables at class scope are shared by all the methods in the class and can be marked as public or private with respect to their access outside of the class. They have Class scope regardless of whether they are public or private.
Another way to look at scope is that a variable’s scope is where it lives and exists. You cannot use the variable in code outside of its scope. The variable does not exist outside of its scope.
If there is a local variable with the same name as an instance variable, the variable name will refer to the local variable instead of the instance variable, as seen below. We’ll see in the next lesson, that we can distinguish between the local variable and the instance variable using the keyword this to refer to this object’s instance variables.
public class Person {
private String name;
private String email;
public Person(String initName, String initEmail) {
name = initName;
email = initEmail;
}
public String toString() {
String name = "unknown";
// The local variable name here will be used,
// not the instance variable name.
return name + ": " + email;
}
// main method for testing
public static void main(String[] args) {
// call the constructor to create a new person
Person p1 = new Person("Sana", "sana@gmail.com");
System.out.println(p1);
}
}
Practice¶
- The class is missing an accessor method.
- There is a scope violation.
- The instance variables boxesOfFood and numOfPeople should be designated public instead of private.
- There is a scope violation. Instance variables are usually private.
- The return type for the Party constructor is missing.
- There is a scope violation. Constructors do not have return types.
- The variable updatedAmountOfFood is not defined in eatFoodBoxes method.
- There is a scope violation. The updatedAmountOfFood variable is a local variable in another method.
- The Party class is missing a constructor
- There is a scope violation.
6-8-3: Consider the following class definitions. Which of the following best explains why the class will not compile?
public class Party {
private int boxesOfFood;
private int numOfPeople;
public Party(int people, int foodBoxes) {
numOfPeople = people;
boxesOfFood = foodBoxes;
}
public void orderMoreFood(int additionalFoodBoxes) {
int updatedAmountOfFood = boxesOfFood + additionalFoodBoxes;
boxesOfFood = updatedAmountOfFood;
}
public void eatFoodBoxes(int eatenBoxes) {
boxesOfFood = updatedAmountOfFood - eatenBoxes;
}
}
The private variables currentPrice and movieRating are not properly initialized.
-
The constructor will initialize them.
The private variables currentPrice and movieRating should have been declared public.
-
Instance variables should be private.
The printPrice method should have been declared as private.
-
Methods are usually public.
currentPrice is declared as a local variable in the getCurrentPrice method and set to 16, and will be used instead of the instance variable currentPrice.
-
Correct!
The currentPrice instance variable does not have a value.
-
Accessor methods are usually public.
6-8-4: Consider the following class definition.
public class Movie {
private int currentPrice;
private int movieRating;
public Movie(int p, int r) {
currentPrice = p;
movieRating = r;
}
public int getCurrentPrice() {
int currentPrice = 16;
return currentPrice;
}
public void printPrice() {
System.out.println(getCurrentPrice());
}
}
Which of the following reasons explains why the printPrice method is “broken” and only ever prints out a value of 16?
Summary¶
Scope is defined as where a variable is accessible or can be used.
Local variables can be declared in the body of constructors and methods. These variables may only be used within the constructor or method and cannot be declared to be public or private.
When there is a local variable with the same name as an instance variable, the variable name will refer to the local variable instead of the instance variable.
Formal parameters and variables declared in a method or constructor can only be used within that method or constructor.