gpt4 book ai didi

objective-c - Objective C 中的 C++ 模板替换

转载 作者:行者123 更新时间:2023-12-04 18:13:24 27 4
gpt4 key购买 nike

如果我想支持从 C++ 中的数据库查询中检索几种类型,我可以创建一个基于模板的方法定义,例如

template<typename T>
T getDBValue(int col){
throw "not implemented";
}

template<>
int getDBValue<int>(int col){
return 43;
}

template<>
char* getDBValue<char*>(int col){
return "foo";
}

我知道在objective-c中没有真正的模板对应物,那么你会用什么来支持很少的返回值而不是像这样实现呢
- (type1) getType1FromCol: (int) col;
- (type2) getType2FromCol: (int) col;
- (type3) getType3FromCol: (int) col;

提前致谢!

最佳答案

如果你想混合使用这两种语言,或者你发现一种语言更适合特定任务,你总是可以使用 Objective-C++。通常,您可以通过将文件扩展名更改为 .mm 来编译为 ObjC++。 .

对于 ObjC 接口(interface),您可以考虑这样一个简单的包装器接口(interface),它使用您现有的程序:

template<typename T>
T getDBValue(int col); // << not defined

template<>
int getDBValue<int>(int col){
return 43;
}

template<>
const char* getDBValue<const char*>(int col){
return "foo";
}

你可以这样处理它:
@implementation MONDBEntry
{
int col;
}
...

- (int)intValue
{
return getDBValue<int>(self.col);
}

- (NSString *)stringValue
{
return [NSString stringWithUTF8String:getDBValue<const char*>(self.col)];
}
...

关于objective-c - Objective C 中的 C++ 模板替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12173145/

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