記事「英訳」 の 検索結果 355 件
-
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..
-
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..