c/c++中的__attribute__((weak))使用

main.cpp

#include <stdio.h>
#include "g_test.h"

extern bool testFunc();

bool  __attribute__((weak))testFunc()
{
    warnf("this is weak api\n");
    return false;
}

int main()
{
    testFunc();
    return 0;
}

g_test.h

#ifndef  __G_TEST_H_
#define __G_TEST_H_


bool testFunc();

#endif

g_test.cpp

#include "g_test.h"
#include <stdio.h>

bool testFunc()
{
    printf("this  is strong api\n");
    return false;
}

输出结果是调用到g_test.cpp中的testFunc函数中

如果g_test.cpp中没有实现,则调用的__attribute__((weak))的函数

原文链接: https://www.cnblogs.com/weiyouqing/p/13601976.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/202232

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月12日 下午9:06
下一篇 2023年2月12日 下午9:06

相关推荐