ActionScript 3 基本类结构

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 基本类结构相关的知识,希望对你有一定的参考价值。

package {

	// IMPORTS
	import flash.display.*;
	
	// CLASS DEFINITION
	// must match file name (MyClass.as)
	// convention says start with a capital
	public class MyClass extends MovieClip {
		
		// INSTANCE VARIABLES or PROPERTIES
		private var instanceVariable:String = "I'm an instance variable";
		public var myProperty:String = "I could be a property";
		
		// CONSTRUCTOR
		// runs when an instance of MyClass is created
		// must match class name
		public function MyClass():void {
			trace("instanceVariable: "+instanceVariable);
		}
		
		// METHODS
		private function doSomething():void {
			trace("myProperty: "+myProperty);
		}
	}	
}

以上是关于ActionScript 3 基本类结构的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 类路径结构

ActionScript 3 基本的空文档类

ActionScript 3 基本包和类创建/扩展

ActionScript 3 基本文档类模板,由FlashDevelop创建

ActionScript 3 ActionScript 3 SliceBitmap类

ActionScript 3 TextManager ActionScript 3.0类