1 package
2 {
3 import flash.display.Sprite;
4 import flash.events.MouseEvent;
5
6 public class FunctionExample extends Sprite
7 {
8 /*************************************
9 * 构造函数
10 * ************************************/
11 public function FunctionExample()
12 {
13 // 调用函数
14 var fullName:String = GetFullName("Jim", "Green");
15
16 // 输出
17 trace("全名是:" + fullName);
18 }
19
20 /*************************************
21 * 创建获取全名的函数
22 * ************************************/
23 private function GetFullName(fName:String, lName:String):String
24 {
25 // 组合名字
26 var fullName:String = fName + " " + lName;
27
28 // 返回全名
29 return fullName;
30 }
31 }
32
33 }
posted on 2007-09-20 09:37
Lalo 阅读(263)
评论(0) 编辑 收藏 引用 所属分类:
ActionScript 3.0