C #: Кто-нибудь знает, как это исправить? : Тип или имя пространства имен 'T' не может быть найдено - PullRequest
0 голосов
/ 06 марта 2010

У меня действительно проблемы с исправлением моего кода, мне было интересно, есть ли кто-нибудь, кто может мне помочь.

В основном я получаю следующую ошибку:

Не удалось найти имя типа или пространства имен 'T' (отсутствует директива using или ссылка на сборку?)

Вот мои классы:

Класс программы:

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

namespace LinkedListGen

{
    class program
    {
        public static void Main(string[] args)
        {
            LinkListGen<T> testList = new LinkListGen<T>();
            Console.ReadKey();
        }
    }
}

Класс LinkGen:

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

namespace LinkedListGen
{
class LinkGen<T>
{
    private T data;
    private LinkGen<T> next;

    public LinkGen(T item)
    {
        data = item;
        next = null;
    }

    public LinkGen(T item, LinkGen<T> list)
    {
        data = item;
        next = list;
    }

    public LinkGen<T> TailList
    {
        set { this.next = value; }
        get { return this.next; }
    }

    public T HeadList
    {
            set { this.data = value; }
            get { return this.data; }
        }

    }
}

Класс LinkListGen:

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

namespace LinkedListGen
{
public class LinkListGen<T> where T : IComparable
{
    private LinkGen<T> list;

    public LinkListGen() //initialise list to be empty
    {
        list = null;
    }

    public void AddItem(T item)
    {
        list = new LinkGen<T>(item, list);
    }
    public string DisplayList() //write items to string
    {
        LinkGen<T> temp = list;
        string buffer = "";
        while (temp != null)
        {
            Console.WriteLine(temp.HeadList);
            temp = temp.TailList;
        }
        return buffer;
    }
    public int NumberOfItems()
    {
        LinkGen<T> temp = list;
        int count;
        count = 0;
        while (temp != null)
        {
            count++;
            temp = temp.TailList;
        }
        Console.Out.WriteLine("There are " + count + "items recorded.");
        return count;
    }

    public bool IsPresentItem(T item)
    {
        bool txf;
        LinkGen<T> temp = list;
        int count;
        count = 0;
        while (temp != null)
        {
            if (item.Equals(temp.HeadList))
            {
                count++;
            }
            temp = temp.TailList;
        }
        if (count > 0)
        {
            Console.Out.WriteLine("There are " + count + " instances of " + item + ".");
            txf = true;
        }
        else
        {
            Console.Out.WriteLine("There are no instances of " + item + ".");
            txf = false;
        }
        return txf;

    }

    public void RemoveItem(T item)
    {
        LinkGen<T> prev = list;
        LinkGen<T> curr = list;
        if (item.Equals(curr.HeadList))
            list = curr.TailList;
        else
        {
            while (curr != null)
            {
                if (item.Equals(curr.HeadList))
                {
                    prev.TailList = curr.TailList;
                }
                else
                {
                    prev = curr;
                    curr = curr.TailList;
                }
            }
        }
    }
}
}

Целью является создание общего связанного списка

Я действительно в своем уме и буду признателен за любую предложенную помощь.

Ответы [ 2 ]

10 голосов
/ 06 марта 2010

Здесь необходимо указать конкретный тип, а не заполнитель типа: T :

    public static void Main(string[] args) 
    { 
        LinkListGen<T> testList = new LinkListGen<T>(); 
                    ^                             ^
        Console.ReadKey(); 
    } 

Например:

        LinkListGen<string> testList = new LinkListGen<string>(); 
6 голосов
/ 06 марта 2010
LinkListGen<T> testList = new LinkListGen<T>();

Вам следует заменить здесь букву «T» типом, который вы пытаетесь использовать для общего списка.

...