linux g 未定义的引用,在Linux Mint中使用g ++导致对'Class :: Function'的未定义引用(collect2:错误)...

另外stoi和exit(0)都在stk.cpp中超出范围,我不知道为什么。

这是main.cpp

#include "stk.h"

int main()

{

cout << "REDACTED\n" << endl;

stk m;

m.startProg();

}

使用g++ -v main.cpp -o test as 编译时会导致此错误:

undefined reference to 'stk::startProg()'

collect2: error: ld returned 1 exit status

这是stk.h

#ifndef STK_H

#define STK_H

#include

#include

#include "stdio.h"

using namespace std;

class stk

{

struct node

{

int data;

node * next;

};

node *head;

public:

stk()

{

head = NULL;

}

int push(int val);

int pop();

int display();

int reverse(node * temp);

void insertAtBottom(int tVal, node * temp);

bool isEmpty();

int startProg();

private:

};

#endif

这是stk.cpp中的startProg函数

int stk::startProg()

{

while (true)

{

string line = "\0";

getline(cin, line);

if (0 == line.compare(0,4, "push"))

{

int val = 0;

val = stoi(line.substr(5));

push(val);

}

else if(0 == line.compare (0,3, "pop"))

{

pop();

}

else if (0 == line.compare(0,7, "isempty"))

{

printf ("%s\n", isEmpty() ? "true" : "false");

}

else if (0 == line.compare(0,7, "reverse"))

{

node * top = NULL;

reverse(top);

}

else if (0 == line.compare(0,7, "display"))

{

display();

}

else if (0 == line.compare(0,4, "quit"))

{

exit(0);

}

格式化失败,我假设所有括号都正确。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值