我正在尝试使用Linux上的monoDevelop在C#中编写自定义LinkedList类,仅仅是为了测试和学习。以下代码永远不会编译,我不知道为什么!它甚至没有告诉我什么是错的。它的全部内容是:错误:编译器似乎崩溃了。检查构建输出板以获取详细信息。当我去检查输出垫时,它也没有帮助: 未处理的异常:System.ArgumentException:必须在泛型类型定义上声明指定的字段。 参数名称:字段
我该怎么办?
using System;
using System.Text;
using System.Collections.Generic;
namespace LinkedList
{
public class myLinkedList<T> : IEnumerable<T>
{
//List Node class
//===============
private class ListNode<T>
{
public T data;
public ListNode<T> next;
public ListNode(T d)
{
this.data = d;
this.next = null;
}
public ListNode(T d, ListNode<T> n)
{
this.data = d;
this.next = n;
}
}
//priavte fields
//===============
private ListNode<T> front;
private int size;
//Constructor
//===========
public myLinkedList ()
{
front = null;
size = 0;
}
//public methods
//===============
public bool isEmpty()
{
return (size == 0);
}
public bool addFront(T element)
{
front = new ListNode<T>(element, front);
size++;
return true;
}
public bool addBack(T element)
{
ListNode<T> current = front;
while (current.next != null)
{
current = current.next;
}
current.next = new ListNode<T>(element);
size++;
return true;
}
public override string ToString()
{
ListNode<T> current = front;
if(current == null)
{
return "**** Empty ****";
}
else
{
StringBuilder sb = new StringBuilder();
while (current.next != null)
{
sb.Append(current.data + ", ");
current = current.next;
}
sb.Append(current.data);
return sb.ToString();
}
}
// These make myLinkedList<T> implement IEnumerable<T> allowing
// a LinkedList to be used in a foreach statement.
public IEnumerator<T> GetEnumerator()
{
return new myLinkedListIterator<T>(front);
}
private class myLinkedListIterator<T> : IEnumerator<T>
{
private ListNode<T> current;
public virtual T Current
{
get
{
return current.data;
}
}
private ListNode<T> front;
public myLinkedListIterator(ListNode<T> f)
{
front = f;
current = front;
}
public bool MoveNext()
{
if(current.next != null)
{
current = current.next;
return true;
}
else
{
return false;
}
}
public void Reset()
{
current = front;
}
public void Dispose()
{
throw new Exception("Unsupported Operation");
}
}
}
}
答案 0 :(得分:14)
您需要添加非通用API;所以添加到迭代器:
object System.Collections.IEnumerator.Current { get { return Current; } }
和可枚举:
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
无论其!如果你手动实现这个,你就错过了一个技巧。 “迭代器块”会容易得多。
以下是完整实施;您根本不需要编写 的枚举器类(您可以完全删除myLinkedListIterator<T>
):
public IEnumerator<T> GetEnumerator()
{
var node = front;
while(node != null)
{
yield return node.data;
node = node.next;
}
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
答案 1 :(得分:5)
当我尝试粘贴的代码时,我在尝试构建时会遇到2个错误。
myLinkedList'没有实现接口成员 'System.Collections.IEnumerable.GetEnumerator()'。 '.myLinkedList.GetEnumerator()'无法实现 'System.Collections.IEnumerable.GetEnumerator()'因为它没有 具有匹配的返回类型'System.Collections.IEnumerator'。
解决方案是在第一个类中实现以下内容。
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
第二个错误是:
myLinkedList.myLinkedListIterator'没有实现接口 member'System.Collections.IEnumerator.Current'。 'JonasApplication.myLinkedList.myLinkedListIterator.Current' 无法实现'System.Collections.IEnumerator.Current',因为它 没有匹配的'object'返回类型。
第二类的解决方案可以在第二类中实现。
对象IEnumerator.Current { 得到{返回当前; } }