⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 square.as

📁 as30的详细例子,包含了大量的例子,是不可多得的学习AS3的好资料
💻 AS
字号:
package com.example.programmingas3.geometricshapes 
{
	public class Square extends RegularPolygon 
	{
	    // Inherits the numSides and sideLength properties from RegularPolygon
	    	    
		public function Square(len:Number = 100):void
		{
			super(len, 4);
		}
		
		public override function getArea():Number
		{
		    return (this.sideLength * this.sideLength);
		}
		
		// Inherits the getPerimeter() method from RegularPolygon
		
		// Inherits the getSumOfAngles() method from RegularPolygon
		
		public override function describe():String
		{
		    // starts with the name of the shape, then delegates the rest
		    // of the description work to the RegularPolygon superclass
		    var desc:String = "This shape is a Square.\n";
		    desc += super.describe();
		    
		    return desc;
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -