Перейти к содержимому

Java variable scope 🌍

Bro Code

0:00 / 0:00

Java variable scope 🌍

76 997 просмотров · 5 лет назад
Bro Code
3,39 млн подписчиков
76 997 просмотров · 5 лет назад
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); } } //**********************************************