码迷,mamicode.com
首页 > 编程语言 > 详细

【小松教你手游开发】【unity实用技能】InvalidOperationException: out of sync

时间:2016-08-04 19:02:02      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:

在unity开发中出现这个bug。

在网上查了下是在迭代器中直接修改引起的。c#是不允许你在迭代器中直接修改。

改了一下确实解决。

原本是这样

 

[csharp] view plain copy
 
 技术分享技术分享
  1. public void Run()  
  2. {  
  3.     foreach (var item in timerDict)  
  4.     {  
  5.         if (null != item.Value)  
  6.         {  
  7.             item.Value.Run();  
  8.         }  
  9.     }  
  10. }  


改成这样:

 

 

[csharp] view plain copy
 
 技术分享技术分享
    1. public void Run()  
    2. {  
    3.     //使用迭代器时不能直接在里面修改值,获得引用在做操作  
    4.     tempTimerList.Clear();  
    5.     foreach (CTimerItem item in timerDict.Values)  
    6.     {  
    7.         if (null != item)  
    8.         {  
    9.             tempTimerList.Add(item);  
    10.               
    11.         }  
    12.     }  
    13.   
    14.     for(int i =0;i<tempTimerList.Count;i++)  
    15.     {  
    16.         tempTimerList[i].Run();  
    17.     }  
    18. }  

【小松教你手游开发】【unity实用技能】InvalidOperationException: out of sync

标签:

原文地址:http://www.cnblogs.com/chrisfxs/p/5737647.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!