gpt4 book ai didi

c - 如何从另一个c文件调用静态函数?

转载 作者:太空狗 更新时间:2023-10-29 17:04:27 24 4
gpt4 key购买 nike

我想从另一个 C 文件调用静态函数。但它总是显示 "function" used but never defined .

在 ble.c 中

static void bt_le_start_notification(void)
{
WPRINT_BT_APP_INFO(("bt_le_start_notification\n"));
}

在 ble.h 中

static void bt_le_start_notification(void);

当我尝试调用 bt_le_start_notification 时在 ma​​in.c 中,它将显示 "bt_le_start_notification" used but never defined .

在main.c中

#include "ble.h"

void application_start( void )
{
bt_le_start_notification();
}

我错过了什么吗?提前致谢。

最佳答案

 For restricting function access from other file, the keyword static is used 

静态函数的访问仅限于文件,除非声明它们的地方。当我们想限制从外部世界访问函数时,我们必须将它们设为静态。如果你想从其他文件访问函数,然后去全局函数,即非静态函数。

关于c - 如何从另一个c文件调用静态函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35425790/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com