根本可以在同一个项目中使用所有4种语言,如果是这样的话?
类似问题的风格:Can I mix Swift with C++? Like the Objective - C .mm files,接受的答案是否。
充分使用Bridging Header
,.h
不包含C++
语句,Objective-C
包装.h
确实包含C++
,{{1}要对.mm
类和C++
进行实际包装的文件,4种语言(如果包含.swift
则为5种语言)可以构建并链接到单个可执行文件中吗?
答案 0 :(得分:112)
您可以混合Log.d(msg)
,Swift
,C
,C++
&同一个Xcode项目中的Objective-C
个文件。
Objective-C++
// Declaration: C.h
#ifndef C_h
#define C_h
#ifdef __cplusplus
extern "C" {
#endif
void hello_c(const char * name);
#ifdef __cplusplus
}
#endif
#endif /* C_h */
// Definition: C.c
#include "C.h"
#include <stdio.h>
void hello_c(const char * name) {
printf("Hello %s in C\n", name);
}
// Declaration: CPP.hpp
#pragma once
#include <string>
class CPP {
public:
void hello_cpp(const std::string& name);
};
// Definition: CPP.cpp
#include "CPP.hpp"
#include <iostream>
using namespace std;
void CPP::hello_cpp(const std::string& name) {
cout << "Hello " << name << " in C++" << endl;
}
// Declaration: CPP-Wrapper.h
#import <Foundation/Foundation.h>
@interface CPP_Wrapper : NSObject
- (void)hello_cpp_wrapped:(NSString *)name;
@end
// Definition: CPP-Wrapper.mm
#import "CPP-Wrapper.h"
#include "CPP.hpp"
@implementation CPP_Wrapper
- (void)hello_cpp_wrapped:(NSString *)name {
CPP cpp;
cpp.hello_cpp([name cStringUsingEncoding:NSUTF8StringEncoding]);
}
@end
// Declaration: Objective-C.h
#import <Foundation/Foundation.h>
@interface Objective_C : NSObject
- (void)hello_objectiveC:(NSString *)name;
@end
// Definition: Objective-C.m
#import "Objective-C.h"
@implementation Objective_C
- (void)hello_objectiveC:(NSString*)name {
printf("Hello %s in Objective-C\n", [name cStringUsingEncoding:NSUTF8StringEncoding]);
}
@end
// Declaration: Objective-CPP.h
#import <Foundation/Foundation.h>
@interface Objective_CPP : NSObject
- (void)hello_objectiveCpp:(NSString *)name;
@end
// Definition: Objective-CPP.mm
#include <iostream>
#import "Objective-CPP.h"
using namespace std;
@implementation Objective_CPP
- (void)hello_objectiveCpp:(NSString *)name {
cout << "Hello " << [name cStringUsingEncoding:NSUTF8StringEncoding] << " in Objective-C++\n";
}
@end
无法导入// Declaration & definition: Swift.swift
func hello_swift(_ name: String) {
print("Hello \(name) in Swift")
}
头文件,不是因为它的命名约定,而是因为它包含CPP.hpp
关键字。
class
#import "C.h"
#import "CPP-Wrapper.h"
#import "Objective-C.h"
#import "Objective-CPP.h"
(参见this Stack Overflow answer中的第3项)
.h:这是一个棘手的部分,因为它们含糊不清地用于所有C,++或不同的目标,无论目标与否。当.h不包含单个C ++关键字(如类)时,它可以添加到... Bridging-Header.h中,并将公开它声明的相应.c或.cpp功能的任何函数。否则,该标头必须包装在纯C或Objective-C API中。
// Invoke C
hello_c("World".cStringUsingEncoding(NSUTF8StringEncoding))
// Can't Invoke C++ without a wrapper
// CPP().hello_cpp("World".cStringUsingEncoding(NSUTF8StringEncoding))
// Invoke C++ through Objective-C
CPP_Wrapper().hello_cpp_wrapped("World")
// Invoke Objective-C
Objective_C().hello_objectiveC("World")
// Invoke Objective-C++
Objective_CPP().hello_objectiveCpp("World")
// Invoke Swift
Swift().hello_swift("World")
<强>评论强>
Cy-4AH :
是。您只需将Hello World in C
Hello World in C++
Hello World in Objective-C
Hello World in Objective-C++
Hello World in Swift
打包到C++
或C
即可在Objective-C
中使用。
确实,我有一个项目正是如此。 Swift
了解抽象的跨平台模型的主旨,下面有一些C++
部分; C
将Objective-C
类包含在C++
目的,Swift
将所有类绑定到Swift
的子类,并使用一些自定义视图来查询NSDocument
1}}东西。
根据您的出色建议添加了C
包装。要从 C ++ 方法extern "C"
调用 C 方法void hello_c(const char * name)
,请添加hello_cpp(const std::string& name)
并致电#include "C.h"
。
new SO-32541268 :现在有了参数!
►在GitHub上找到此解决方案,并在Swift Recipes上找到其他详细信息。