記事「ActionScript 3.0」 の 検索結果 62 件
-
as3 from the ground up #34 local variableslocal variables four kinds of variables: ・local variables, instance variables, dynamic instance va..
-
as3 from the ground up #35 creating a local variablecreating a local variable create variables using variable definition var identifier = value; the ..
-
as3 from the ground up #36 the pet variablethe pet variable local variable for accessing the VirtualPet object: package zoo { public class..
-
as3 from the ground up #37 tracking object characteristicstracking object characteristics recall that a class describes: ・the characteristics of a type of o..
-
as3 from the ground up #38 instance variablesinstance variables instance variable is a variable attached to an object ・width associated with th..
-
as3 from the ground up #39 pet nicknamespet nicknames use an instance variable to track each pet's name package zoo { internal class Vi..
-
as3 from the ground up #40 assigning a new nameassigning a new name assign new name by changing petName's value object.instanceVariable = value ..
-
as3 from the ground up #41 variable access-control modifiersvariable access-control modifiers public: access allowed everywhere internal: access allowed withi..
-
as3 from the ground up #42 encapsulationencapsulation an object's variables are its own business should be defined private to prevent exte..
-
as3 from the ground up #43 initializing an objectinitializing an object so far, we initialize VirtualPet object characteristics like this: var pet ..
-
as3 from the ground up #44 constructor parametersconstructor parameters constructor parameter: local variable defined in constructor definition dire..
-
as3 from the ground up #45 csetting constructor parameter valuessetting constructor parameter values set parameter value with constructor argument: new SomeClass(..