Bii 发现警告消息与 Apache Xerces 包括

Bii find Warn message with Apache Xerces include

本文关键字:Apache Xerces 包括 消息 发现 警告 Bii      更新时间:2023-10-16

当我运行bii查找时,我收到了警告WARN:找不到以下块候选:xercesc/xercesc

当你运行"bii find"时,biicode 会解析你的包含并在 biicode 服务器中搜索它们。代码应该已经存在。因此,如果您收到该消息,则有两种解释:

  • 用户"xercesc"不存在
  • 来自"xercesc"用户的名为"xercesc"的块不存在

在 biicode 服务器中查找依赖项的正确形式是:

#include "user/block/file_name"

例如,如果您有一个主文件.cpp:

#include "fenix/log4z/log4z.h"
int main(){
 //your code to use log4z.h header        file
}

然后,这包含意味着你想要从用户"fenix","log4z"块和"log4z.h"头文件及其依赖项(隐式和显式)中使用。

转到 fenix/log4z 块页面

您还可以在 https://www.biicode.com/explore 上搜索和探索现有代码