我在 github上有一个示例项目,我在其中为要在 Objective-C 中使用的外部 C++ 库创建了一个 C++ 包装类。
我不明白为什么我返回的指针有时是正确的,有时是错误的。这是示例输出:
Test Data = 43343008
In Compress 43343008
Returned Value = 43343008
Casted Value = 43343008
Test Data = 2239023
In Compress 2239023
Returned Value = 2239023
Casted Value = 2239023
Test Data = 29459973
In Compress 29459973
Returned Value = 29459973
Casted Value = l.remote
Test Data = 64019670
In Compress 64019670
Returned Value =
Casted Value = stem.syslog.master
在上面的输出中,您可以看到按钮的第一次和第二次单击输出了我期望的结果。在其他每一次点击中,返回的值或转换的值都是无效的。我假设这是因为我的指针指向一个我没想到的地址。多次运行应用程序时,任何按钮点击都可能是对的或错的。
我也尝试过使用单个线程,但遇到了类似的结果。
完整的代码在github上,但这里是重要的部分。
视图控制器.m
#import "ViewController.h"
extern const char * CompressCodeData(const char * strToCompress);
@implementation ViewController
...
// IBAction on the button
- (IBAction)testNow:(id)sender
{
[self performSelectorInBackground:@selector(analyze) withObject:nil];
}
- (void)analyze
{
@synchronized(self) {
const char *testData = [[NSString stringWithFormat:@"%d",
(int)(arc4random() % 100000000)] UTF8String];
NSLog(@"Test Data = %s", testData);
const char *compressed = CompressCodeData(testData);
NSLog(@"Returned Value = %s", compressed);
NSString *casted = [NSString stringWithCString:compressed
encoding:NSASCIIStringEncoding];
NSLog(@"Casted Value = %@\n\n", casted);
}
}
@end
SampleWrapper.cpp
#include <iostream>
#include <string.h>
#include <CoreFoundation/CoreFoundation.h>
using namespace std;
extern "C"
{
extern void NSLog(CFStringRef format, ...);
/**
* This function simply wraps a library function so that
* it can be used in objective-c.
*/
const char * CompressCodeData(const char * strToCompress)
{
const string s(strToCompress);
// Omitted call to static method in c++ library
// to simplify this test case.
//const char *result = SomeStaticLibraryFunction(s);
const char *result = s.c_str();
NSLog(CFSTR("In Compress %s"), result);
return result;
}
}