Set the memeber variable in constructor : Constructor « Class « Flash / Flex / ActionScript






Set the memeber variable in constructor

 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
      var crTest:Car = new Car("A", "B", "C");


    }
  }
}
     class Car {
     
       private var _sMake:String = null;
       private var _sModel:String = null;
       private var _sExteriorColor:String = null;
       private var _nMileage:Number;
     
     
       public function Car(sMake:String,
                           sModel:String,
                            sExteriorColor:String)
      {
         _sMake = sMake;
         _sModel = sModel;
         _sExteriorColor = sExteriorColor;
     
         _nMileage = 0;
       }
     
}

        








Related examples in the same category

1.Creating a Constructor
2.Add public attribute to contrustor.
3.A class named Product with a constructor and a method
4.Constructor with parameter
5.Add assignment code to class constructor
6.Declare a constructor method for the Example class