の動作はDictionary
私を混乱させます:私は、以下のDictionary
ように満たされた を持っています:
var playerControllers:Dictionary = new Dictionary();
playerControllers[id] = new PlayerController();
次に、コントローラーの 1 つを削除します。
delete playerControllers[id]; //I also tried playerControllers[id] = null;
それから:
for each (var playerController:PlayerController in playerControllers)
{
//"deleted" PlayerController exists!
}
ディクショナリからキーで値を削除するには?