举一个简单的例子。main.mm
如果我在没有 ARC的情况下编译以下文件,它工作正常。
#import <Foundation/Foundation.h>
template <typename T>
int testing(const T & whoCares) {
return 0;
}
int main(int argc, const char * argv[])
{
return testing(@"hello");
}
如果我用 ARC 编译它,会出现以下错误:
/Users/sam/Projects/TemplateTest/TemplateTest/main.mm:10:12: error: no matching function for call to 'testing'
return testing(@"hello");
^~~~~~~
/Users/sam/Projects/TemplateTest/TemplateTest/main.mm:4:5: note: candidate template ignored: substitution failure [with T = NSString *]
int testing(const T & whoCares) {
^
1 error generated.
为什么?更重要的是,它可以解决吗?对于替换失败的原因,没有任何进一步的解释。如果我显式传递类型,如下所示:
return testing<NSString *>(@"hello");
有用。话虽如此,我不想也不应该在我的代码中这样做。
同样有趣的是,这只对 Objective C 类型失败。无论启用 ARC,以下替换都可以正常工作:
return testing("hello");
return testing(123);