c#泛型出错了

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSy... using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;

namespace 创建泛型2
{
public class LinkedListNode1<T>
{
private T value;
public LinkedListNode1(T value)
{
this.value = value;
}
public T Value
{
get { return value; }
}
private LinkedListNode1<T> next;
public LinkedListNode1<T> Next
{
get { return next; }
internal set { next = value; }
}
private LinkedListNode1<T> prev;
public LinkedListNode1<T> Prev
{
get { return prev; }
internal set { next = value; }
}

}
public class LinkedList1<T> : IEnumerable<T>
{

private LinkedListNode1<T> first;
public LinkedListNode1<T> First
{
get { return first; }
}
private LinkedListNode1<T> last;
public LinkedListNode1<T> Last
{
get { return last; }

}
public LinkedListNode1<T> AddLast(T node)
{
LinkedListNode1<T> newnode = new LinkedListNode1<T>(node);
if (first == null)
{
first = newnode;
last = first;
}
else
{
last.Next = newnode;
last = last.Next;
}
return newnode;
}
public IEnumerator<T> GetEnumerator()
{
LinkedListNode1<T> current = first;
while (current != null)
{
yield return current.Value;
current = current.Next;
}
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
public static void Main(string[] args)
{
LinkedList1<int> list2 = new LinkedList1<int>();
list2.AddLast(1);
list2.AddLast(2);
list2.AddLast(5);
foreach (int i in list2)
{
Console.WriteLine(i);
}
}
}

}
错误说明:
1。错误 1 程序“E:\application\ConsoleApplication6\ConsoleApplication6\obj\Debug\ConsoleApplication6.exe”不包含适合于入口点的静态“Main”方法 ConsoleApplication6
2。错误 警告 2 “创建泛型2.LinkedList1<T>.Main(string[])”: 入口点不能是泛型的或属于泛型类型 E:\application\ConsoleApplication6\ConsoleApplication6\Program.cs 78 28 ConsoleApplication6
展开
 我来答
jackyc23
2010-08-07 · TA获得超过523个赞
知道小有建树答主
回答量:376
采纳率:0%
帮助的人:394万
展开全部
你不能把Main方法放到类LinkedList1里面
我将代码稍微改了下,在我这里VS2008里测试通过了

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;

namespace 创建泛型2
{
public class LinkedListNode1<T>
{
private T value;
public LinkedListNode1(T value)
{
this.value = value;
}
public T Value
{
get { return value; }
}
private LinkedListNode1<T> next;
public LinkedListNode1<T> Next
{
get { return next; }
internal set { next = value; }
}
private LinkedListNode1<T> prev;
public LinkedListNode1<T> Prev
{
get { return prev; }
internal set { next = value; }
}

}
public class LinkedList1<T> : IEnumerable<T>
{

private LinkedListNode1<T> first;
public LinkedListNode1<T> First
{
get { return first; }
}
private LinkedListNode1<T> last;
public LinkedListNode1<T> Last
{
get { return last; }

}
public LinkedListNode1<T> AddLast(T node)
{
LinkedListNode1<T> newnode = new LinkedListNode1<T>(node);
if (first == null)
{
first = newnode;
last = first;
}
else
{
last.Next = newnode;
last = last.Next;
}
return newnode;
}
public IEnumerator<T> GetEnumerator()
{
LinkedListNode1<T> current = first;
while (current != null)
{
yield return current.Value;
current = current.Next;
}
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}
class Program
{
public static void Main(string[] args)
{
LinkedList1<int> list2 = new LinkedList1<int>();
list2.AddLast(1);
list2.AddLast(2);
list2.AddLast(5);
foreach (int i in list2)
{
Console.WriteLine(i);
}
Console.Read();
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Lim
2010-08-07 · 知道合伙人软件行家
Lim
知道合伙人软件行家
采纳数:152 获赞数:1014
资深研发工程师,敏捷教练ScrumMaster

向TA提问 私信TA
展开全部
错误信息显示得很明白了。

你的Main函数是不能写在一个泛型类型里面的。

你可以另外建个类型
class Program
{
//....把Main放这里面
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式