在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
栈(Stack)和队列是非常类似的一个容器,只是栈是一个后进先出(LIFO)的容器。 static void Main() { var alphabet = new Stack<char>(); alphabet.Push('A'); alphabet.Push('B'); alphabet.Push('C'); Console.Write("First iteration: "); foreach (char item in alphabet) { Console.Write(item); } Console.WriteLine(); Console.Write("Second iteration: "); while (alphabet.Count > 0) { Console.Write(alphabet.Pop()); } Console.WriteLine(); } 第二次迭代后,栈变空。 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论