Static Method Scope : Variable scope : Data Type Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Data Type » Variable scope »

 

Static Method Scope


 

package {
  public class SomeClass {
    public static function staticMeth (  ) {
    }
  }
}
package {
  public class SomeClass extends SomeParentClass {
    public static function staticMeth (  ) {
      // Local variables, nested functions, and namespaces defined here
      // are accessible throughout staticMeth
    }
  }
}

        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo Data Type
» Variable scope