我的印象是你不能使用split来阅读这个,所以我试图添加到代码中拆分到每个然后重新组合,但我不能迭代像数组或列表,因为队列不跟踪元素编号。请帮忙!
感谢帮助人员!
Queue<string> preWords = new Queue<string>(input.Split(" ".ToCharArray()));
//这里有神秘的代码,可以将它组合成对吗?
Queue<string> postWords = preWords;
this.words = postWords;
P.S。我的原始代码如下:
this.words = new Queue<string>(input.Split((" ").ToCharArray()));