記事「ActionScript 3.0」 の 検索結果 62 件
-
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..
-
as3 from the ground up #50 multiple references to the same objectmultiple references to the same object when two variables refer to the same object ・either variabl..
-
as3 from the ground up #51 instance variable for our petinstance variable for our pet need a reference to the pet after VirtualZoo constructor finishes pa..
-
as3 from the ground up #52 behaviours for our petbehaviours for our pet instance methods define an object's behaviour instance method is: ・a set o..
-
as3 from the ground up #53 creating an instance methodcreating an instance method class SomeClass { function identifier () { } } the parentheses ..
-
as3 from the ground up #54 running an instance methodrunning an instance method execute the code in an instance method: object.methodName() known as "..
-
as3 from the ground up #55 giving pets a stomachgiving pets a stomach new instance variable: currentCalories set default value with initializer (=..
-
as3 from the ground up #56 the eat() methodthe eat() method instance method eat() adds 100 to currentCalories eventually, user input will tri..
-
as3 from the ground up #57 invoking eat()invoking eat() package zoo { public class VirtualZoo { private var pet; public f..