記事「英訳」 の 検索結果 355 件
-
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(..
-
as3 from the ground up #46 a VirtualPet constructor parametera VirtualPet constructor parameter required parameter, name: package zoo { internal class Virtu..
-
as3 from the ground up #47 associating one variable with another's valueassociating one variable with another's value within VirtualPet constructor, name's value is "Stan"..
-
as3 from the ground up #48 remove petName's initializerremove petName's initializer petName will always receive a value via VirtualPet constructor remove..
-
as3 from the ground up #49 copies and referencescopies and references the following assignment can have two results: this.petName = name; if name..