In AS3, where do you draw the line between Dictionary and ArrayCollection?
问题 Basically I have been using a Dictionary object in my program that basically took ints as its keys and stored RTMFP peer IDs in the appropriate locations. Each int was unique and represented one user. Now I'm needing to expand on this where users are identified by a combination of the int and a Boolean value, kind of like this: private var m_iUID:int; private var m_blnIsCurrent:Boolean; Only the combination between those two really uniquely identifies the user. That being said I was just