Java variable scope

9 Views
Published
Java variable scope

#Java #variable #scope

//**********************************************
public class Main {

public static void main(String[] args) {

//local = declared inside a method
// visible only to that method

//global = declared outside a method, but within a class
// visible to all parts of a class

DiceRoller diceRoller = new DiceRoller();

}
}
//**********************************************
import java.util.Random;

public class DiceRoller {

Random random;
int number;

DiceRoller(){
random = new Random();
roll();
}

void roll() {
number = random.nextInt(6)+1;
System.out.println(number);
}
}
//**********************************************
Category
Bro Code
Tags
java global variable, java global variables, global variables in java
Be the first to comment