Instance Method Scope : Variable scope « Data Type « Flash / Flex / ActionScript






Instance Method Scope

 

package {
  public class SomeClass {
    public function instanceMeth (  ) {
      // Code here is in the instanceMeth scope
    }
  }
}

        








Related examples in the same category

1.Static Method Scope
2.ActionScript available scopes:
3.Class Level (Static) Variables and Methods are accessed by using the class name followed by the object name
4.Instance Level Variables and Methods are independent for each instance of the class
5.Function-Level Variables and Functions