Читать книгу OCP Oracle Certified Professional Java SE 17 Developer Study Guide - Jeanne Boyarsky - Страница 116
Managing Variable Scope
ОглавлениеYou've learned that local variables are declared within a code block. How many variables do you see that are scoped to this method?
public void eat(int piecesOfCheese) { int bitesOfCheese = 1; }
There are two variables with local scope. The bitesOfCheese
variable is declared inside the method. The piecesOfCheese
variable is a method parameter. Neither variable can be used outside of where it is defined.