Try OpenEdge Now
skip to main content
Object-oriented Programming
Getting Started with Classes, Interfaces, and Objects : Defining classes : Defining state in a class : Local variables and other data elements of methods
 
Local variables and other data elements of methods
Local variables and other data elements defined within a method do not have an access mode and are always scoped to, and only accessible from within, the method where they are defined. Thus, they are only available during execution of the defining method.