記事「ActionScript 3.0」 の 検索結果 62 件
-
as3 from the ground up #22 defining VirtualZoodefining VirtualZoo package zoo { class VirtualZoo { } } VirtualZoo を定義する package zoo { ..
-
as3 from the ground up #23 the VirtualPet classthe VirtualPet class pets in the zoo will be represented by instances of the VirtualPet class new ..
-
as3 from the ground up #24 the public attributethe public attribute by default, a class in a package can only be used in that package to make cla..
-
as3 from the ground up #25 the internal attributethe internal attribute to indicate that a class should be used within its package only, use interna..
-
as3 from the ground up #26 constructor methodconstructor method constructor method initializes instances of a class create constructor method w..
-
as3 from the ground up #27 constructors are publicconstructors are public in ActionScript 3.0, all constructors are public package zoo { public c..
-
as3 from the ground up #28 initializing instancesinitializing instances constructor's instructions carried out when an object is created known as "..
-
as3 from the ground up #29 making VirtualPet objectsmaking VirtualPet objects to put pets in the zoo, we create VirtualPet objects general approach: ..
-
as3 from the ground up #30 making objects with literalsmaking objects with literals some built-in classes have special object-creation syntax to create a..
-
as3 from the ground up #31 putting pets in the programputting pets in the program add a VirtualPet object to the zoo program: package zoo { public cl..
-
as3 from the ground up #32 the lost petthe lost pet problem: program currently cannot refer to VirtualPet object so program cannot contro..
-
as3 from the ground up #33 variables and valuesvariables and values every object is a piece of data called a value a variable is an identifier th..