views:

221

answers:

3

I am using as3. Just a simple question. If I created a static method. say I decide to call on other methods within that static method. Do those methods I call on need to be static as well? what If I used some of the properties. Not to store data permanently, but just within that process. Do those properties need to be static ??

+1  A: 

Yes. If anything is called static that means that it is related not to the current instance of the class but to the whole class therefore it must act instance-independent, e.g. use other static fields and methods if needed.

Li0liQ
Ok, so in conclusion. The only varibles and methods that can work with a static method is other static methods and variables. OR!! variables that fall within the scope of the static method. Correct ?
numerical25
Yes. Everything that is declared within the method is called 'local' and surely can be used there be the method static or not.
Li0liQ
+1  A: 

No, they do not. You can use any type of variable/method from within a static method, including, of course, local variables. However, there is no concept of "this" in a static method, since the method is not being executed on an instance, but on the class itself. Therefor, the following (inside a class declaration) is illegal:

public var myInstanceVariable : int;

public static function myStaticMethod() : void
{
  // Illegal:
  myInstanceVariable = 1;

  // Illegal (same as above, "this" is implicit):
  this.myInstanceVariebl = 1;

  // This however is legal (local variable):
  var localVal : int = 1;
}

The references to myInstanceVariable above are illegal because that variable is an instance variable, which is not accessible to the static method. Because static methods are not executed on an instance in the first place, the "this" special variable is not valid.

If you wanted to, you could keep a static reference to an instance, and execute methods on said instance. That's the key idea behind the common singleton pattern.

 private static var _INSTANCE : MyClass;

 public static function myStaticFunction() : void
 {
   _INSTANCE.doSomething();
 }

Here, the _INSTANCE variable can be referenced from the static method, because the variable itself is declared as static.

richardolsson
+1  A: 

To avoid confusion, there are actually answers to both the questions you asked:

Do method calls within a static method need to be static? Li0liQ answered this.

Do variables used within a static method need to be static? richardolsson answered this.

To summarize, within a static method, you can only access static variables and methods EXCEPT if you define local variables within the scope of the static method.

private var instanceVar : MyClass;
private static var staticVar : MyClass;

public static function myStaticFunction() : void
{
    // Illegal, instance variable

    instanceVar = new MyClass( 1 );

    // Illegal, method on instance variable

    instanceVar.someMethod();

    // Legal, scoped local variable

    localVar : MyClass = new MyClass( 1 );

    // Legal, method on scoped local variable

    localVar.someMethod();                        

    // Legal, static variable

    staticVar = new MyClass ( 1 );

    // Legal, method on static variable

    staticVar.someMethod();
}

It makes sense if you think about it a little, but it's not an entirely clear concept at first.

LucasTizma