当前位置:编程学习 > C#/ASP.NET >>

CS0246: 找不到类型或命名空间名称“T”(是否缺少 using 指令或程序集引用?)

编译器错误信息: CS0246: 找不到类型或命名空间名称“T”(是否缺少 using 指令或程序集引用?)

源错误:
 
   

行 46: public class BinaryTree
行 47: {
行 48:     public int countLeafNode(Node<T> root)
行 49:     {
行 50:         if (root == null)  

源文件: c:\Inetpub\wwwroot\Chapter6\App_Code\Class1.cs   \plain 行: 48

Program:
  public int countLeafNode(Node<T> root)     //??????????????此句错误
    {
        if (root == null)
        {
            return;
        }
        if ((root.Lchild == null) && (root.Rchild == null))
        {
            return 1;
        }
        else
        { 
           return (countLeafNode(root.Lchild) + countLeafNode(root.Rchild));
        }
    } --------------------编程问答-------------------- public class BinaryTree<T>
类上没有定义类型 
--------------------编程问答-------------------- public class BinaryTree<T>是吗 --------------------编程问答-------------------- YA --------------------编程问答-------------------- ok oko  ok 
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,