object thisflog = new object()
   public void a()
   {
       for(int i = 0; i< 10 ;i ++)
       {
              thread th =  new thread(new threadstart(b));
              th.start();       }
   }
   public void b()
  {
      lock(thisflog )
      {
          c()
      }    }public void c()
{
    lock(this)
{}
}这种情况C中需要加锁嘛 ,或者 会出现死锁嘛