<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    隨筆-159  評論-114  文章-7  trackbacks-0

    On occasion you may want to create classes dynamically by name. To do this in Flex 3 you can use getDefinitionByName (it's previous incarnation was getClassByName). Here's a quick example:

    Actionscript:
    1. //cc() is called upon creationComplete
    2. private function cc():void
    3. {
    4.         var obj:Object = createInstance("flash.display.Sprite");
    5. }
    6.  
    7. public function createInstance(className:String):Object
    8. {
    9.         var myClass:Class = getDefinitionByName(className) as Class;
    10.         var instance:Object = new myClass();
    11.         return instance;
    12. }

    The docs for getDefinitionByName say:

    "Returns a reference to the class object of the class specified by the name parameter."

    ...so you may be wondering why in the above code we needed to specify the return value as a Class? This is because getDefinitionByName can also return a Function (e.g. 'flash.utils.getTimer' - a package level function that isn't in any class). As the return type can be either a Function or a Class the Flex team specified the return type to be Object and you are expected to perform a cast as necessary.

    The above code closely mimics the example given in the docs, but in one way it is a bad example because everything will work fine for "flash.display.Sprite", but try to do the same thing with a custom class and you will probably end up with the following error:

    ReferenceError: Error #1065: Variable [name of your class] is not defined.

    The reason for the error is that you must have a reference to your class in your code - e.g. you need to create a variable and specify it's type like so:

    Actionscript:
    1. private var forCompiler:SomeClass;

    Without doing this your class will not be compiled in to the .swf at compile time - and there is reason behind this madness. The compiler only includes classes which are actually used (and not just imported). It does so in order to optimise the size of the .swf. So the need to declare a variable should not really be considered an oversight or bug, although it does feel hackish to declare a variable that you don't directly use.

    Here is the code your would need to create a custom class called Person from a string (where Person resides in the top level package along with your default application).

    Actionscript:
    1. //cc() is called upon creationComplete
    2. private var forCompiler:Person; //REQUIRED! (but otherwise not used)
    3.  
    4. private function cc():void
    5. {
    6.         var obj:Object = createInstance("Person");
    7. }
    8.  
    9. public function createInstance(className:String):Object
    10. {
    11.         var myClass:Class = getDefinitionByName(className) as Class;
    12.         var instance:Object = new myClass();
    13.         return instance;
    14. }

     

    You can declare properties for all possible classes that you intend to create but if you are not happy with doing that inside your main app Alex Harui has another suggestion (something I've not personally tried yet):

    "The code for the class has to be in a SWF. It can be in the main SWF or
    loaded via a module later. There is a compiler option (-includes) that
    allows you to stuff other classes into a SWF without explicitly naming
    them in your source code."

    Passing in Parameters

    Another thing you may find yourself wanting to do is to pass parameters to the constructor of your class (indeed, this is what got me on to the subject today). As far as I'm aware this isn't possible to do this in AS3 (and isn't part of the ECMA spec so it is unlikely to change - please leave a comment or email if you know otherwise ), so you may want to set up another method which can accept and set multiple parameters . If you pass in an array you may stumble across another problem - the original array you passed in becomes the first item of a new array ... okay, that probably sounds confusing so see here for a similar example and solution. In short, the solution is to use Function.apply, and you can see how I used it below:

    Actionscript:
    1. private var forCompiler:Person;
    2.  
    3. private function cc():void
    4. {
    5.         var obj:Object = createInstance("Person", ["bob", 30]);
    6. }
    7.  
    8. public function createInstance(className:String, args:Array):Object
    9. {
    10.         var myClass:Class = getDefinitionByName(className) as Class;
    11.         var instance:Object = new myClass();
    12.         instance.initArgs.apply(null, args);
    13.         return instance;
    14. }
    15.  
    16. /*********************************************************************
    17. //In person.initArgs()....
    18. //Note: the constructor also accepts name &amp; age, assigning them default values
    19. //if not specified.
    20. public function initArgs(name:String, age:uint):void
    21. {
    22.         this.name = name;
    23.         this.age = age;
    24. }
    25. *********************************************************************/

    Now, I'm not sure if this is the best approach, but it works, and with a deadline approaching that's good enough for now :]



    u dont have to create a variable, its enough just to reference to the class somewhere in the code;

    package example
    {
    import example.items.*;
    import flash.utils.getDefinitionByName;

    // force import
    example.items.Class1;
    example.items.Class2;

    class Test
    {
    public function Test()
    {
    var test:Class = getDefinitionByName(”example.items.Class1?) as Class;

    var testInstance = new test();
    }
    }
    }



    posted on 2010-02-14 15:40 北國狼人的BloG 閱讀(229) 評論(0)  編輯  收藏

    只有注冊用戶登錄后才能發表評論。


    網站導航:
     
    主站蜘蛛池模板: 亚洲欧洲日韩国产一区二区三区| 精品成人一区二区三区免费视频| 免费无码av片在线观看| 亚洲中文字幕不卡无码| 亚洲精品视频在线观看视频| 国产免费无码AV片在线观看不卡| 国产精品成人免费综合| 在线观看国产一区亚洲bd| 免费萌白酱国产一区二区| 亚洲欧洲日韩在线电影| a高清免费毛片久久| 国产亚洲精品国看不卡| a毛片视频免费观看影院| 亚洲成a人片77777老司机| 成人免费激情视频| 亚洲欧美日韩一区二区三区| 日本久久久免费高清| 尤物视频在线免费观看| 亚洲国产综合专区电影在线| 日韩免费一区二区三区在线播放| 亚洲人成无码网站在线观看| 亚洲国产成人久久综合一区77| 国产在线观看xxxx免费| 亚洲成a人片在线观看中文!!!| 全免费一级毛片在线播放| 一级毛片**免费看试看20分钟| 亚洲AV一宅男色影视| 免费在线观看的网站| 一区二区免费电影| 亚洲色大成网站www永久| 国产91在线免费| 十八禁无码免费网站| 亚洲av无码专区首页| 国产亚洲综合色就色| 成人毛片免费观看视频在线| 亚洲国产精品成人精品软件 | 亚洲av乱码一区二区三区| 国产免费av片在线无码免费看| 久久九九全国免费| 亚洲AV噜噜一区二区三区| 久久精品国产精品亚洲色婷婷|