- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这在 GCC 3 和 4 中编译得很好。MSVC++ 无法确定 noFunction 的类型并抛出一些可怕的错误。请注意,如果您将 noFunction 转换为 BFunction,它在 VS2010 中工作得很好。
我的问题:这是 VS2010 中的缺陷,还是 GCC 违反规则?
#include <map>
using namespace std;
typedef bool (*AFunction)(int arg1, int arg2);
typedef bool (*BFunction)(long arg1, bool arg2);
bool noFunction(long, bool) { return true; }
void test(AFunction a)
{
make_pair(a, noFunction); //fails in VS2010
}
make_pair(a, (BFunction)noFunction); //works everywhere
1> makepairtest.cpp
1>c:\program files (x86)\microsoft visual studio 10.0\vc\include\type_traits(197): error C2752: 'std::tr1::_Remove_reference<_Ty>' : more than one partial specialization matches the template argument list
1> with
1> [
1> _Ty=bool (__cdecl &)(long,bool)
1> ]
1> c:\program files (x86)\microsoft visual studio 10.0\vc\include\xtr1common(356): could be 'std::tr1::_Remove_reference<_Ty&&>'
1> c:\program files (x86)\microsoft visual studio 10.0\vc\include\xtr1common(350): or 'std::tr1::_Remove_reference<_Ty&>'
1> c:\program files (x86)\microsoft visual studio 10.0\vc\include\type_traits(962) : see reference to class template instantiation 'std::tr1::remove_reference<_Ty>' being compiled
1> with
1> [
1> _Ty=bool (__cdecl &)(long,bool)
1> ]
1> c:\program files (x86)\microsoft visual studio 10.0\vc\include\utility(26) : see reference to class template instantiation 'std::tr1::decay<_Ty>' being compiled
1> with
1> [
1> _Ty=bool (__cdecl &)(long,bool)
1> ]
1> c:\xxx\makepairtest.cpp(14) : see reference to class template instantiation 'std::tr1::_Unrefwrap<_Type>' being compiled
1> with
1> [
1> _Type=bool (__cdecl &)(long,bool)
1> ]
1>c:\program files (x86)\microsoft visual studio 10.0\vc\include\type_traits(965): error C2528: 'abstract declarator' : pointer to reference is illegal
1>c:\program files (x86)\microsoft visual studio 10.0\vc\include\type_traits(349): error C2528: 'type' : pointer to reference is illegal
1> c:\program files (x86)\microsoft visual studio 10.0\vc\include\type_traits(967) : see reference to class template instantiation 'std::tr1::add_pointer<_Ty>' being compiled
1> with
1> [
1> _Ty=bool (__cdecl &)(long,bool)
1> ]
1>c:\program files (x86)\microsoft visual studio 10.0\vc\include\utility(148): error C2535: 'std::_Pair_base<_Ty1,_Ty2>::_Pair_base(const _Ty1 &,const _Ty2)' : member function already defined or declared
1> with
1> [
1> _Ty1=bool (__cdecl *)(int,int),
1> _Ty2=bool (__cdecl &)(long,bool)
1> ]
1> c:\program files (x86)\microsoft visual studio 10.0\vc\include\utility(134) : see declaration of 'std::_Pair_base<_Ty1,_Ty2>::_Pair_base'
1> with
1> [
1> _Ty1=bool (__cdecl *)(int,int),
1> _Ty2=bool (__cdecl &)(long,bool)
1> ]
1> c:\program files (x86)\microsoft visual studio 10.0\vc\include\utility(174) : see reference to class template instantiation 'std::_Pair_base<_Ty1,_Ty2>' being compiled
1> with
1> [
1> _Ty1=bool (__cdecl *)(int,int),
1> _Ty2=bool (__cdecl &)(long,bool)
1> ]
1> c:\xxx\makepairtest.cpp(14) : see reference to class template instantiation 'std::pair<_Ty1,_Ty2>' being compiled
1> with
1> [
1> _Ty1=bool (__cdecl *)(int,int),
1> _Ty2=bool (__cdecl &)(long,bool)
1> ]
最佳答案
取地址noFunction
适用于 VC10 和 gcc 4.5.2,即:
make_pair(a, &noFunction);
关于visual-studio-2010 - std::make_pair 的这种使用在 GCC 3 和 4 中运行良好。它在 Visual Studio C++ 2010 中失败。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7459072/
我正在尝试键入别名 std::make_pair 函数以将其用作 abc::make_pair 函数。 auto(*make_pair)() = std::make_pair; namespace a
通常是 =在变量声明中,编译器将其视为移动构造。例如: vector foo = vector(13, 0); 将调用vector::vector(vector&&)构造函数。 这如何与 make_p
我已经用过typedef typedef std::pair coords; typedef std::pair fcoords; 然后创建此数据类型的 vector std::vector open
用std::make_pair there is only one implementation C++14 onwards templateconstexpr std::pair make_pair
我有一个这样的 map (第一个和第二个参数都是唯一的): std::map mapTest; mapTest.insert(make_pair(1, 101)); mapTest.insert(ma
make_pair 可以在不提及类型的情况下创建对。我想对我的类使用相同的技巧,但它继承自 boost::noncopyable,因此无法编译: template struct bit_writer
std::pair currentData; void OnCallback() { Object object = getObject(); OtherObject* otherOb
这个问题在这里已经有了答案: C++11 make_pair with specified template parameters doesn't compile (1 个回答) 关闭 9 年前。
MSVC++“实用程序” header 中 make_pair 的定义是: template inline pair make_pair(_Ty1 _Val1, _Ty2 _Val2) { // re
如果我从不同的范围将它插入到 map 中,是否需要分配一对? #include #include #include #include using namespace std; void par
在我最近编写的代码中,我注意到一个奇怪的行为。 当我使用第一个参数为 std::pair 的 make_pair 时,make_pair 变得“神奇地”在命名空间中可用(我不必使用 std:: 限定符
我有以下代码 #include using namespace std; int a = ...//gets calculated somehow
我正在尝试用 SDL_ttf 制作一个字体字典,就像我用 SDL_image 制作一个字典一样。由于字体是用 pnt_size 存储的,所以我制作了一个包含此信息的结构: struct fon
众所周知,make_pair 推导类型。这就是它存在并且方便的原因。现在看到这个 example : std::pair foo; std::pair bar; foo = std::make_p
考虑这个函数: std::pair getPair() { return std::make_pair(0, 0); } 为什么会编译? 不应该make_pair返回 std::pair这与
使用make_pair后,我得到了一些pairToCount 在这种格式中(元素 1 元素 2)= Db 中的频繁数: (1 2) = 1 (1 3) = 1 (1 4) = 1 (2 3) = 2
设计用于利用模板推导来实例化其模板类拷贝的函数类型有一个正式名称。 std::make_pair 是此类方法的主要示例。想到了术语“辅助方法”,但我记得还有一个更具体的术语……我就是想不起来了。 最佳
我在阅读图书馆的代码库时遇到了以下问题。 errorMap,在下面的代码中使用定义为: map > errorMap; 代码的相关部分是: errorMap["substitutions"] += m
我遇到了一些奇怪的事情,我想得到解释。以下代码片段提供了一个简单的类模板 type和两个 operator #include template class type { public: T v
我在使用模板成员重载运算符和使用 make_pair 时遇到了一些问题: class MyArchive { public: template MyArchive & operato
我是一名优秀的程序员,十分优秀!