- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
以下代码片段可以在 clang 和 MSVS 中编译,但不能在 gcc 中编译。
template<typename T> class clone_ptr;
template<typename T, typename U, typename ...Args>
clone_ptr<T> make_cloned( Args ...args );
// note: everything not needed for example cut out, so
// this class is neither complete nor correct
template<typename T>
class clone_ptr
{
public:
clone_ptr() : ptr(nullptr) {}
operator bool() { return ptr!=nullptr; }
T* operator->() { return ptr; }
private:
clone_ptr(T* p) : ptr(p) {}
T* ptr;
template<class T1,class U1, typename ...Args>
friend clone_ptr<T1> make_cloned( Args ...args );
};
template<typename T, typename U=T, typename ...Args>
clone_ptr<T> make_cloned( Args ...args )
{
return {new U(args...)};
}
// ----------------------------------------------
#include <string>
#include <vector>
#include <iostream>
using namespace std;
struct Base
{
int a;
Base( int a=0 ) : a(a) {}
virtual string foo() { return "Base "+to_string(a); };
virtual ~Base() {}
};
struct Sub : Base
{
Sub( int a=0 ) : Base(a) {}
virtual string foo() override { return "Sub "+to_string(a); };
};
string testit()
{
std::vector< clone_ptr< Base > > vec;
vec.push_back( make_cloned<Base>(7) );
vec.emplace_back();
vec.push_back( make_cloned<Base,Sub>(5) );
string ss;
for( auto&& a : vec )
{
ss += a?a->foo():"<empty>";
}
return ss;
}
int main()
{
cout << testit() << endl;
}
gcc 提示:
error: no matching function for call to 'make_cloned(int)'
vec.push_back( make_cloned<Base>(7) );
note: candidate is:
note: template<class T, class U, class ... Args> clone_ptr<T> make_cloned(Args ...)
clone_ptr<T> make_cloned( Args ...args )
^
note: template argument deduction/substitution failed:
note: couldn't deduce template parameter 'U'
vec.push_back( make_cloned<Base>(7) );
这是 gcc 中的错误吗?是否有解决方法只依赖于符合标准的 C++?
最佳答案
确实,这看起来像是一个错误。解决方法是将默认模板参数分离到第二个函数中。在 clone_ptr
中,您有两个 friend :
template<class T1, typename ...Args>
friend clone_ptr<T1> make_cloned( Args ...args );
template<class T1, class U1, typename ...Args>
friend clone_ptr<T1> make_cloned( Args ...args );
定义很简单:
template<typename T, typename ...Args>
clone_ptr<T> make_cloned( Args ...args ) { return {new T(args...)}; }
template<typename T, typename U, typename ...Args>
clone_ptr<T> make_cloned( Args ...args ) { return {new U(args...)}; }
使用 gcc 4.8.3 和 clang 3.5 测试。
编辑:经过调查,我能够以两种不同的方式让您的代码与 gcc 4.8.3 一起工作:
完全删除模板函数声明
// this is not needed:
template<typename T, typename U, typename ...Args>
clone_ptr<T> make_cloned( Args ...args );
将模板函数定义中的默认模板参数定义移动到声明中:
template<typename T, typename U = T, typename ...Args>
clone_ptr<T> make_cloned( Args ...args );
template<typename T, typename U, typename ...Args>
clone_ptr<T> make_cloned( Args ...args )
{
return {new U(args...)};
}
我仍然认为这是 gcc 的问题,但这样您的代码就可以工作了。
关于c++ - gcc 中的错误,或 clang/MSVC 中的扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28854491/
我有两个单独编译的DLL,一个是从Visual Studio2008编译的,另一个是从MATLAB编译的MEX文件。这两个DLL都包含一个头文件。当我获取一个DLL中的结构sizeof()时,它返回4
一位同事更喜欢尤达的条件:。这在团队中是一种有争议的风格,并且提出的一个论点是,如果(x=0),编译器可以一致地发出警告来检测错误模式。。然而,msvc似乎没有检测到类(https://godbolt
while (getline(stream, thisword, ' ') != 0) {... 我可以在 MSVC 2012 下编译这一行。通过传递一个“SPC”字符作为字符串分隔符,它应该测试输入
我使用较早版本的 Cocos2dx 编写游戏并使用 VS 2013 对其进行编译。请注意,我使用的是 CMake 和 Qt Creator 以及两个编译器版本。当 Cocos2dx v3.12 出来时
我正在尝试在 Windows 10 64 位下的 Python 3.8.3 上安装 chatterbot 包并遇到一个奇怪的错误,我怀疑它一定与某些目录或 PATH 设置有关,我希望这是一个简单的修复
知乎Where and why do we have to put the template and typename keywords , 我很惊讶地得知 MSVC accepts以下代码: str
在摆弄复制省略时,我遇到了这种奇怪的行为: class Obj { public: Obj() = default; Obj(Obj&&) = delete; Obj(const Obj
以下代码使用 gcc 和 clang(以及许多其他 C++11 编译器)进行编译 #include typedef int datatype; template struct to_datatyp
我已经阅读了很多帖子,但我不明白如何在命令行中使用 MSVC 在 Windows 上创建一个简单的动态库。我正在做的是: 1º) 编写 DLL 代码 动态.h #pragma once __decls
我有以下代码无法与MSVC一起编译。使用gcc,clang和icc可以正常编译。我想这是个错误,对不对? 您有/知道一些解决方法吗? #include struct A { template
我已经阅读了很多帖子,但我不明白如何在命令行中使用 MSVC 在 Windows 上创建一个简单的动态库。我正在做的是: 1º) 编写 DLL 代码 动态.h #pragma once __decls
我有一个简单的 C++ 代码,我尝试使用 Visual Studio 2019 进行编译: #include #include int main() { std::cout << "Hel
有没有办法告诉MSVC编译器在短时间内不要修改某个寄存器?就像在一个小循环中,告诉它不要使用 ebx 寄存器(它可以使用任何其他寄存器)。在这种情况下,压入和弹出寄存器不起作用,因为在我将其弹出后,M
Borland C 有伪寄存器 _AX、_BX、_FLAGS 等,可以在“C”代码中使用它们将寄存器保存到临时变量。 是否有任何 MSVC 等效项?我尝试了@AX、@BX等,但编译器(MSVC1.5)
美好的一天, 我在 C++ 中尝试新事物,我发现 Visual Studio 中的调试和发布配置给我不同的结果。 #include #include #include #include #in
我想我在 MSVC 的编译器(MSVC Ultimate 2012 版本 11.0.61030.00 更新 4)中发现了一个错误。 #include "stdafx.h" class Base { p
我正在使用 Haxe 的 HXCPP 生成 C++ 代码并使用 Microsoft Visual Studio 2010 Express Edition 对其进行编译。我正在关注 this指南,它会要
我正在使用 Microsoft Visual Studio 2008 (C++)。我有一个要在 Debug模式下构建的解决方案。我引用了一些第三方库(例如 MyGUI)。在调试构建结束时,链接器给出了
老计算机程序员遇到新问题:-) 我正在将一个 CMake 文件项目移至 Visual Studio,并且该 CMake 项目中有数百个包含路径。 我当然可以一劳永逸地修补它们,但这会经常发生在不同的机
我有下一个功能: namespace TEST { class TEST { int a; int b; }; } namespace UNION_TE
我是一名优秀的程序员,十分优秀!