• Linux+qt:创建动态库so,以及如何使用(详细步骤)


    目录

    1、根据安装Qt Creator的向导进行创建

    2、开发动态库注意的一些细节

    3、给动态库添加一个对外开放的接口文件

    4、了解下Qt的 .pri文件(非常实用)

    5、如何调用动态库.so


    1、根据安装Qt Creator的向导进行创建

    (1)选择“Library”->“C++ Library”

    (2)编写上动态库名字;(3)选择需要的编译方式:(本文选择的是:gcc编译的方式)

    (4)选择动态库所需要的模块:

    注意:其实这里不选,后面也可以在.pro文件里添加的。

    (5)填写动态库的名字

    (6)点击完成即可:

    2、开发动态库注意的一些细节

    QT       -= gui     // 添加需要的模块

    TARGET = testDll    // 生成动态库的名字

    CONFIG += plugin // 如果不加,可能生成的动态库为:libtestDll.so.1.0.0


    DESTDIR = ../bin/dll
    LIBS += -L../bin/dll -lrt

    3、给动态库添加一个对外开放的接口文件

    例如:添加一个testApi的文件,想向外面暴露哪些接口,可以在这里表示

    (1)头文件

    1. #ifndef TESTAPI_H
    2. #define TESTAPI_H
    3. #include
    4. using namespace std;
    5. //定义宏
    6. #if defined(__cplusplus)
    7. #define D_EXTERN_C extern "C"
    8. #else
    9. #define D_EXTERN_C
    10. #endif
    11. #define D_CALLTYPE
    12. #define D_DECL_EXPORT __attribute__((visibility("default")))
    13. #define D_DECL_IMPORT __attribute__((visibility("default")))
    14. //向外暴露2个接口
    15. D_EXTERN_C QString D_CALLTYPE printfAppPath();
    16. D_EXTERN_C QString D_CALLTYPE printfCurrentPath();
    17. #endif // TESTAPI_H

    (2)源文件

    具体实现,可以在TestDll中进行功能的是实现。

    1. #include "testapi.h"
    2. #include "testdll.h"
    3. QString printfAppPath()
    4. {
    5. return TestDll::getInstance()->printfAppPath();
    6. }
    7. QString printfCurrentPath()
    8. {
    9. return TestDll::getInstance()->printfCurrentPath();
    10. }
    4、了解下Qt的 .pri文件(非常实用)

    (1).pri文件功能:把额外用到的一些自定义组件放在一个文件中,方便调用,使用的时候采用include引用即可。

    (2)具体创建流程:

            1)打开项目文件夹,在这里面新建一个文件夹(名为demo);

            2)在demo文件夹下新建一个pri文件(名为demo)。(怎么新建?可以新建一个文本文件,然后重命名为demo.pri);

            3)打开Qt Creator ,在你的项目的Pro文件中加入相关的 .pri文件

            写完保存后,自动刷新,.pri文件会自动导入到你的工程下。

    include(General/general.pri)

    INCLUDEPATH += -I $$PWD/General

            4)然后可以在demo文件中添加Headers,Sources,Resources等文件~,如此一来下次使用就直接引用这个demo文件的内容即可。

    HEADERS += \
       

    PWD/TimerManager.h " role="presentation" style="text-align: center; position: relative;">PWD/TimerManager.h 
    PWD/Singleton.h

    SOURCES += \
        $$PWD/TimerManager.cpp

    5、如何调用动态库.so

    (1)在调用的地方进行,动态库接口声明:

    1. //动态库接口声明
    2. typedef QString (*TYPE_printfAppPath)();
    3. typedef QString (*TYPE_printfCurrentPath)();
    4. // 声明一个变量
    5. TYPE_printfAppPath printfAppPath;
    6. TYPE_printfCurrentPath printfCurrentPath;
    7. //加载动态库
    8. bool loadLibrary(const QString& appPath);

    (3)源文件:

    实现加载动态库,以及如何使用这个接口。

    1. bool loadLibrary(const QString& appPath)
    2. {
    3. QLibrary *m_pLibTest;
    4. //按照实际动态库所在的目录
    5. QString strLibFile = appPath + "/dll/libtestDll.so";
    6. if (QFile::exists(strLibFile))
    7. m_pLibTest = new QLibrary(strLibFile);
    8. else {
    9. slotAppendText(strLibFile + " don't exists");
    10. return false;
    11. }
    12. if(!m_pLibTest->load())
    13. {
    14. QString strErrMsg = m_pLibTest->errorString();
    15. slotAppendText(strLibFile + " load failed: " + m_pLibTest->errorString());
    16. return false;
    17. }
    18. else
    19. {
    20. slotAppendText(strLibFile + " load success");
    21. }
    22. printfAppPath = reinterpret_cast(m_pLibTest->resolve("printfAppPath"));
    23. printfCurrentPath = reinterpret_cast(m_pLibTest->resolve("printfCurrentPath"));
    24. if(!printfAppPath)
    25. {
    26. slotAppendText("printfAppPath not resolve");
    27. return false;
    28. }
    29. if(!printfCurrentPath)
    30. {
    31. slotAppendText("printfCurrentPath not resolve");
    32. return false;
    33. }
    34. QString strAppPath = printfAppPath();
    35. QString strCurrentPath = printfCurrentPath();
    36. slotAppendText("strAppPath : " + strAppPath);
    37. slotAppendText("strCurrentPath : " + strCurrentPath);
    38. return true;
    39. }

  • 相关阅读:
    数据库连接池-c3p0
    JavaWeb 七个步骤,完成一个servlet的hello world程序
    C语言入门log02
    Java Spring Cloud VII 之 内置断言
    opencv_模板匹配
    h3c OSPF和ISIS双点双向引入配置
    【浅学Java】网络编程
    Java基础题08——数组(查找下标所对应的值)
    Java面试集锦-共计2题
    广州蓝景分享—开发人员都知道的JavaScript技巧
  • 原文地址:https://blog.csdn.net/bigger_belief/article/details/134501359