问题描述
编译器错误信息:CS0246:找不到类型或命名空间名称“T”(是否缺少using指令或程序集引用?)源错误:行46:publicclassBinaryTree行47:{行48:publicintcountLeafNode(Node<T>root)行49:{行50:if(root==null)源文件:c:InetpubwwwrootChapter6App_CodeClass1.cs plain行:48Program:publicintcountLeafNode(Node<T>root)//??????????????此句错误{if(root==null){return;}if((root.Lchild==null)&&(root.Rchild==null)){return1;}else{return(countLeafNode(root.Lchild)+countLeafNode(root.Rchild));}}
解决方案
解决方案二:
publicclassBinaryTree<T>类上没有定义类型
解决方案三:
publicclassBinaryTree<T>是吗
解决方案四:
YA
解决方案五:
okokook
时间: 2024-11-10 07:35:37