gpt4 book ai didi

c++ - 在 Swift 代码中调用 C++ 函数时读取文件失败

转载 作者:行者123 更新时间:2023-11-28 05:57:48 27 4
gpt4 key购买 nike

伙计们。我正在快速编写一个 iOS 应用程序,我需要调用一些 C++ 库。因此,我构建了一个关于如何在 C++ 和 Swift 之间桥接的简单示例,并在 iTouch 上进行了测试。我用 extern C 包装了 C++ 接口(interface)。但是当我调用 C++ 函数时我无法读取文件。这是代码。

当我点击 iOS 设备上的按钮时,它需要调用 myFun():

ma​​in.swift

    @IBAction func button(sender: AnyObject) {
myFun()
}

myFun() 是我的 C++ 函数,它只读取本地文件 ("hi.c")。

DlibFun.cpp

#include <stdlib.h>
#include <stdio.h>
#include <string>
#include "DlibFun.h"
#include <unistd.h>

void myFun(){
char* path = (char*)"/hi.c";
FILE* f = fopen(path, "r");
if(f != NULL){
printf("open it\n");
fclose (f);
}else{
printf("FAIL\n");
}
}

用C封装C++代码

DlibFun.h

#ifdef __cplusplus
extern "C" {
#endif

int myFun();

#ifdef __cplusplus
}
#endif

photo-Bridging-Header.h

#include "DlibFun.h"

结果是每次都打印出“FAIL”。有没有人给我任何提示?我尝试了不同的路径,但没有一条是正确的。有没有可能是我的路径错了?或者有什么我不知道的厚东西?

File folder

最佳答案

正如你所说,问题中的代码是一个简单的例子。我不认为你问的问题,即输出“FAIL”的事实,与C++和Swift之间桥接的真正困难有关。正确调用了 C++ 函数,但无法打开文件,很可能是因为它不存在或不可读。事实上,我在 Xcode 中复制了您的示例,只要文件可用,就会得到输出“打开它”;否则它将是“失败”,就像您的情况一样。

因为 DlibFun.cpp 包含 DlibFun.h,其中 myFun() 声明为 extern "C",C++ 编译器会将 myFun() 编译为具有 C 链接,这意味着它可以从 C 和 Swift 调用。当 Swift 通过桥接 header 看到 myFun() 时,它只是将其视为 C 函数并这样调用它。

在现实世界中,myFun() 将在某些 C++ 库中实现并使用 C++ 编译器进行编译,为其提供 C++ 链接,因此只需在 Xcode 中创建一个 header ,将 myFun() 声明为 extern "C",然后那么在桥中包含 header 将无济于事。构建将因链接错误而失败。

要调用 C++ 库函数 myFun(),您可以编写一个包装器,如下所示:

///////////////////
// File DlibFunW.h:

#ifndef DlibFunW_h
#define DlibFunW_h

// Because this is a C file for use by Swift code, via
// the bridge header, we don't need #ifdef __cplusplus.
// And because myFunW() was marked extern "C" in our C++
// wrapper, it's just a C function callable from Swift.
void myFunW();

#endif /* DlibFunW_h */

////////////////////
// File DlibFun.cpp:

#include "DlibFun.h"

// This file is C++ because it calls myFun(), which is
// a function with C++ linkage.

// This code is visible only to the C++ compiler, so
// we don't need #ifdef __cplusplus
extern "C" void myFunW() { myFun(); }

现在我们不需要 DlibFun.h 中的 extern "C",因为 myFun() 具有 C++ 链接,就像真实世界的 C++ 库函数一样。桥接头现在只是

#include "DlibFunW.h"

Swift 调用 myFunW() 而不是 myFun()

当然,这是一个非常简单的示例,仅处理 C 与 C++ 的链接问题。真实世界的 C++ 函数会采用参数和返回值,通常是指针、结构和类类型,处理这些是完全不同的蠕虫病毒。在 StackOverflow 上,您会找到大量相关信息。我推荐的一些问题:

Swift converts C's uint64_t different than it uses its own UInt64 type

How do I get a specific bit from an Integer in Swift?

Converting inout values to UnsafeMutablePointer<Unmanaged<TYPE>?>

Is it possible to convert a Swift class into C void* pointer?

Can I mix Swift with C++? Like the Objective - C .mm files

希望您能在那里找到有用的信息,祝一切顺利!

关于c++ - 在 Swift 代码中调用 C++ 函数时读取文件失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33818475/

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