Collections in Adobe Flex

后端 未结 4 1848
抹茶落季
抹茶落季 2020-12-16 03:44

Is there any open source collection framework, written in ActionScript that would emulate HashMap, HashSet, LinkedHashMap and LinkedHashSet Java class implementations.

相关标签:
4条回答
  • 2020-12-16 04:33

    Check the Lite Collections for ActionScript 3. We are currently talking with the author about making this an AS3Commons project.

    0 讨论(0)
  • 2020-12-16 04:34

    Eric Feminella's HashMap is very nice.

    0 讨论(0)
  • 2020-12-16 04:37

    AS3Commons Collections include (besides others):

    • ArrayList, SortedList
    • Set, LinkedSet, SortedSet
    • Map, LinkedMap, SortedMap
    • LinkedList, Treap

    The project is currently the first address for a serious AS collections framework: It consists of a high level framework architecture, the most comprehensive set of different collections and the fastest collection implementations. Additionally, most of the collections come in a bindable version to be connected to user interfaces.

    AS3Commons Collections | .../as3commons-collections/

    Collections Performance Tests | .../collections-framework-performance-comparision/

    AS3Commons Organization | http://as3commons.org/

    And, yes, I am the author :-)

    0 讨论(0)
  • 2020-12-16 04:40

    Have a look at AS3 Data Structures (AS3Ds) by polygonal

    0 讨论(0)
提交回复
热议问题