由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Computation版 - C++语法错误请教指点
相关主题
2005.net里的round funcitionAny difference between class and typename identifier?
a question about Matlab freadC++ Q07: unnamed namespace
a question about MPI_Barriercompile error about : GetServerURL
询问一个Matlab在C#调用的问题实现vector的iterator,template问题
程序员或生物信息工作本人都感兴趣大家帮忙看看一个sql server set option 的问题
电脑may be infected with a bot,如何应对? 多谢了!请教:PL/SQL
插入节点到complete binary tree的末尾请帮忙读懂这个sql script
template 疑问为什么我就是不会写Shell script?
相关话题的讨论汇总
话题: type话题: listnode话题: class话题: list话题: 报错
进入Computation版参与讨论
1 (共1页)
e****d
发帖数: 333
1
报错:error C3861: 'GetNode': identifier not found
错误位置在下面用“/*此处报错此处报错*/”标出。
一共两个文件
1.main.cpp
#include "linkedlist.h"
int main(){
List LS1(1.0);
LS1.Insert(2.0,0);
//cout< return 0;
}
2.linkedlist.h
template class List;
template class ListNode{
friend class List;
private:
Type data;
ListNode *link;
public:
ListNode();
ListNode(const Type& item);
void InsertAfter(ListNode *p);
ListNod
h**********c
发帖数: 4120
2
try ListNode *newnode= ListNode::GetNode(value,p->link);
/*此处报错此处报错*/
wild guess,
no waranty of any sort.
e****d
发帖数: 333
3
thank you.
But still error:
'ListNode::GetNode' : illegal call of non-static member function

【在 h**********c 的大作中提到】
: try ListNode *newnode= ListNode::GetNode(value,p->link);
: /*此处报错此处报错*/
: wild guess,
: no waranty of any sort.

e****d
发帖数: 333
4
it is solved.
Thank you.

【在 e****d 的大作中提到】
: 报错:error C3861: 'GetNode': identifier not found
: 错误位置在下面用“/*此处报错此处报错*/”标出。
: 一共两个文件
: 1.main.cpp
: #include "linkedlist.h"
: int main(){
: List LS1(1.0);
: LS1.Insert(2.0,0);
: //cout<: return 0;

h**********c
发帖数: 4120
5
put all definitions or declarations inside the {} of the class?
1 (共1页)
进入Computation版参与讨论
相关主题
为什么我就是不会写Shell script?程序员或生物信息工作本人都感兴趣
我收到USPTO信,两个月内要补材料,请问:电脑may be infected with a bot,如何应对? 多谢了!
Swift插入节点到complete binary tree的末尾
Hiring Project manager & SW QA engineertemplate 疑问
2005.net里的round funcitionAny difference between class and typename identifier?
a question about Matlab freadC++ Q07: unnamed namespace
a question about MPI_Barriercompile error about : GetServerURL
询问一个Matlab在C#调用的问题实现vector的iterator,template问题
相关话题的讨论汇总
话题: type话题: listnode话题: class话题: list话题: 报错