2005/08/19 | ASDT使用技巧一[自动生成GET与SET]
类别(AS3) | 评论(4) | 阅读(548) | 发表于 15:16
例如类中有私有属性

private var type:Stirng

在ASDT中按Ctrl+Shift+g

可以自动生成

    /**
     *@return type
     */
    public function getType():String {
        return type;
    }

    /**
     *@param type
     */
    public function setType(type:String):Void {
        this.type = type;
    }

0

评论Comments

日志分类
首页[33]
AS3[20]
工作日记[10]
个人简介[2]
ASV[1]