我正在尝试使用c ++学习共享库(数据结构);每次我运行我的程序时,都会出现此错误:
sachin@sachin-desktop:~$ cd /home/sachin/sDL
sachin@sachin-desktop:~/sDL$ g++ -fPIC -shared myclass.cc -o myclass.so
sachin@sachin-desktop:~/sDL$ g++ class_user.cc -ldl -o class_user
sachin@sachin-desktop:~/sDL$ ./class_user
0
Unable to load Sachin's library
Segmentation fault (core dumped)
sachin@sachin-desktop:~/sDL$
shared.h文件
typedef struct node
{
struct node *prev;
int data;
struct node *next;
}NODE,*PNODE;
class SinglyCLL
{
private :
PNODE head;
PNODE tail;
public :
SinglyCLL();
~SinglyCLL();
virtual void InsertFirst(int);
virtual void InsertLast(int);
virtual void InsertAtPosition(int,int);
virtual void DeleteFirst();
virtual void DeleteLast();
virtual void DeleteAtPosition(int);
virtual int Count();
virtual void Display();
};
myclass.cc文件
#include"sharedfile.h"
#include<iostream>
using namespace std;
SinglyCLL::SinglyCLL()
{
head=NULL;
tail=NULL;
}
void SinglyCLL::InsertFirst(int ino)
{
PNODE temp=head;
PNODE newN=NULL;
newN=new NODE;
newN->next=NULL;
newN->data=ino;
newN->prev=NULL;
if((head==NULL)&&(tail==NULL))
{
head=newN;
tail=newN;
tail->next=head;
head->prev=tail;
}
newN->next=head;
head->prev=newN;
head=newN;
tail->next=head;
head->prev=tail;
}
void SinglyCLL::Display()
{
PNODE temp=head;
if((head==NULL)&&(tail==NULL))
{
return;
}
do
{
cout<<temp->data<<endl;
temp=temp->next;
}while(tail->next!=temp);
}
SinglyCLL::~SinglyCLL()
{
delete head;
delete tail;
}
extern "C"
{
SinglyCLL *create()
{
return new SinglyCLL;
}
void destroy (SinglyCLL* p)
{
delete p;
}
}
class_user.cc文件
#include <stdio.h>
#include <stdlib.h>
#include <dlfcn.h>
#include <iostream>
#include "sharedfile.h"
using namespace std;
int main()
{
void *p=NULL;
SinglyCLL *ptr=NULL;
SinglyCLL* (*fp1)()=NULL;
void (*fp2)(SinglyCLL*)=NULL;
p=dlopen("/home/sachin/sDL/myclass.so",RTLD_LAZY);
if(!p)
{
cout<<p<<endl;
printf("Unable to load Sachin's library \n");
}
fp1=(SinglyCLL*(*)())dlsym(p,"create");
fp2=(void(*)(SinglyCLL*))dlsym(p,"destroy");
ptr=fp1();
ptr->InsertFirst(10);
/*ptr->InsertAtPosition(70,1);
ptr->InsertAtPosition(80,2);*/
ptr->Display();
fp2(ptr);
dlclose(p);
return 0;
}
每次运行此程序时,都会发生分段错误。我使用单循环列表来创建存储数据的链表。我已经完成了代码并且找不到错误。我无法理解为什么它没有运行,因为我试图运行单独的链表与共享库运行正常,没有任何错误。我已经检查了访问文件的权限,这很好。
当我学习在共享库中创建数据结构仅用于教育目的时,在导致问题的部分之外的代码中可能存在改进或改变的可能性。
答案 0 :(得分:1)
编辑:在修改代码之后,我改变了我的答案!
@Zsigmond指出你需要在头文件中定义方法是正确的。但是,这并没有完全解决问题。
我编译了你的源代码并重新创建了你看到的问题(加载时的分段错误)。我通过在shared.h
中添加其他函数的实现来解决这个问题之后,我收到了这个错误:
*** Error in ./class_user: double free or corruption (fasttop): 0x0000000002478660 ***
我能够将其缩小到fp2(ptr)
行;评论此行删除了错误。
更新后的代码如下。
更新了shared.h:
// Header Guard (prevents duplicate symbols)
#ifndef __SHARED_H
#define __SHARED_H
// C++ syntax for a struct doesn't need typedef
struct node
{
node* prev;
int data;
node* next;
};
class SinglyCLL
{
private :
node* head;
node* tail;
public :
SinglyCLL();
~SinglyCLL();
virtual void InsertFirst(int);
virtual void InsertLast(int);
virtual void InsertAtPosition(int,int);
virtual void DeleteFirst();
virtual void DeleteLast();
virtual void DeleteAtPosition(int);
virtual int Count();
virtual void Display();
};
#endif // __SHARED_H
更新了myclass.cc:
#include"shared.h"
#include<iostream>
using namespace std;
SinglyCLL::SinglyCLL()
{
head=NULL;
tail=NULL;
}
void SinglyCLL::InsertFirst(int ino)
{
node* temp=head;
node* newN=NULL;
newN=new node;
newN->next=NULL;
newN->data=ino;
newN->prev=NULL;
if((head==NULL)&&(tail==NULL))
{
head=newN;
tail=newN;
tail->next=head;
head->prev=tail;
}
newN->next=head;
head->prev=newN;
head=newN;
tail->next=head;
head->prev=tail;
}
void SinglyCLL::Display()
{
node* temp=head;
if((head==NULL)&&(tail==NULL))
{
return;
}
do
{
cout<<temp->data<<endl;
temp=temp->next;
}while(tail->next!=temp);
}
SinglyCLL::~SinglyCLL()
{
delete head;
delete tail;
}
extern "C"
{
SinglyCLL *create()
{
return new SinglyCLL;
}
void destroy (SinglyCLL* p)
{
delete p;
}
}
// Empty implementations for the other functions
void SinglyCLL::InsertLast(int)
{
}
void SinglyCLL::InsertAtPosition(int,int)
{
}
void SinglyCLL::DeleteFirst()
{
}
void SinglyCLL::DeleteLast()
{
}
void SinglyCLL::DeleteAtPosition(int)
{
}
int SinglyCLL::Count()
{
}
更新了class_user.cc:
#include <stdlib.h>
#include <dlfcn.h>
#include <iostream>
#include "shared.h"
using namespace std;
int main()
{
void *p=NULL;
SinglyCLL *ptr=NULL;
SinglyCLL* (*fp1)()=NULL;
void (*fp2)(SinglyCLL*)=NULL;
p=dlopen("/home/mike/Projects/C++/myclass.so",RTLD_LAZY);
if(!p)
{
cout<<p<<endl;
cout << "Unable to load Sachin's library" << endl;
}
fp1=(SinglyCLL*(*)())dlsym(p,"create");
fp2=(void(*)(SinglyCLL*))dlsym(p,"destroy");
ptr=fp1();
ptr->InsertFirst(10);
ptr->InsertAtPosition(70,1);
ptr->InsertAtPosition(80,2);
ptr->Display();
// Un-comment next line to force the 'double free' error.
//fp2(ptr);
dlclose(p);
return 0;
}
答案 1 :(得分:0)
编辑Mike P的建议:
您不仅需要实现在标头中声明的每个虚拟方法;你也必须修复你的析构函数。它会是这样的:
SinglyCLL::~SinglyCLL()
{
node *q, *next;
if (head) {
next= head->next;
delete head;
while ((q= next) != head) {
next= q->next;
delete q;
}
}
head= tail= NULL;
}
注意:实际上,因为它是一个循环列表,&#39; tail&#39;指针可以被移除。