C\#대기 열 Queue 다 중 스 레 드 용법 인 스 턴 스

본 논문 의 사례 는 C\#대기 열 Queue 다 중 스 레 드 용법 을 서술 하 였 다.모두 에 게 참고 하도록 공유 하 다.구체 적 인 분석 은 다음 과 같다.
학습 에 사용 할 수 있 도록 예 를 보 여 줍 니 다.

private void button_  Queue     _Click(object sender, EventArgs e)
{
  Console.WriteLine("     ");
  queue = new Queue<string>();
  string[] cars = new string[]{"  ","  ",
    "  ","  ","    "};
  foreach (string str in cars)
  {
    queue.Enqueue(str);
    Console.WriteLine("   -{0}", str);
  }
  Console.WriteLine();
  Console.ForegroundColor = ConsoleColor.Red;
  Thread th = new Thread(new ThreadStart(printQueue));
  th.IsBackground = true; //    ,      ,     
  th.Start();
}
private void printQueue()
{
  while (true)
  {
    if (queue.Count > 0)
    {
      Console.WriteLine("   -{0}", queue.Dequeue());
    }
  }
}
실행 결과

본 고 에서 말 한 것 이 여러분 의 C\#프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기