- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我无法理解为什么以下会导致模棱两可的调用:
#include <iostream>
// generic version f(X, Y)
template <class X, class Y>
void f(X x, Y y) {
std::cout << "generic" << std::endl;
}
// overload version
template <class X>
void f(X x, typename X::type y) {
std::cout << "overload" << std::endl;
}
struct MyClass {
using type = int;
};
int main() {
f(MyClass(), int()); // Call to f is ambiguous
}
我希望重载版本比通用版本更专注于第二个参数,被选为最佳候选者。我知道如果我将重载版本更改为
template <class X>
void f(X x, int y) {
std::cout << "overload" << std::endl;
}
然后调用就很好地解析了,这意味着它与 X::type 是模板相关名称这一事实有关,但仍然无法弄清楚它失败的原因。非常感谢任何帮助。
最佳答案
首先,我们挑选可行的候选人。它们是:
void f(MyClass, int); // with X=MyClass, Y=int
void f(MyClass, typename MyClass::type); // with X=MyClass
这些候选项都采用相同的参数,因此具有等效的转换序列。所以基于这些的决胜局都不适用,所以我们回到 [over.match.best] 中的最后一个可能的决胜局:
Given these definitions, a viable function F1 is defined to be a better function than another viable function F2 if for all arguments i, ICSi(F1) is not a worse conversion sequence than ICSi(F2), and then [...] F1 and F2 are function template specializations, and the function template for F1 is more specialized than the template for F2 according to the partial ordering rules described in 14.5.6.2.
因此我们尝试根据偏序规则对两个函数模板进行排序,这涉及为每个模板参数合成一个唯一的类型,并尝试对每个过载执行模板推导。但是使用来自 [temp.deduct.partial] 的关键附加相关规则:
Each type nominated above from the parameter template and the corresponding type from the argument template are used as the types of P and A. If a particular P contains no template-parameters that participate in template argument deduction, that P is not used to determine the ordering.
那么这是什么意思呢。首先,让我们尝试从重载中推导出通用版本。我们选择合成类型 UniqueX
(对于 X
)和 UniqueX_type
(对于 typename X::type
)并查看是否我们可以调用通用函数。这成功了(使用 X=UniqueX
和 Y=typename X::type
)。
让我们试试相反的方法。我们选择一个 UniqueX
(对于 X
)和一个 UniqueY
(对于 Y
)并尝试执行模板推导。对于第一个 P/A 对,这很容易成功。但是对于第二个参数,X
是一个非推导上下文,您会认为这意味着模板推导失败。 但是 根据报价的粗体部分,我们只是为了订购目的而跳过这个 P/A 对。因此,由于第一个 P/A 对成功,我们认为整个推导过程已经成功。
由于模板推导在两个方向上都成功,我们不能选择一个函数或另一个函数更专业。由于没有进一步的决胜局,因此没有单一的最佳可行候选人,因此这个决定是模棱两可的。
当第二次重载改为:
template <class X> void f(X, int);
过程中发生变化的部分是演绎现在在一个方向上失败了。我们可以推断出 X=UniqueX
但是第二对有一个 int
类型的参数和一个 UniqueY
类型的参数,这将不起作用,所以这个方向失败了。在相反的方向上,我们可以推断出 X=UniqueX
和 Y=int
。这使得此重载比通用重载更专业,因此我最初提到的最后一个决胜局更喜欢它。
作为附录,请注意模板的部分排序很复杂。考虑:
template <class T> struct identity { using type = T; };
template <class T> void foo(T ); // #1
template <class T> void foo(typename identity<T>::type ); // #2
template <class T> void bar(T, T); // #3
template <class T> void bar(T, typename identity<T>::type ); // #4
foo(0); // calls #1, #2 isn't even viable
foo<int>(0); // calls #2
bar(0,0); // calls #3! we fail to deduce 3 from 4, but we succeed
// in deducing 4 from 3 because we ignore the second P/A pair!
关于c++ - 使用模板参数重载解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39355629/
假设我有一个类,我在其中重载了运算符 == : Class A { ... public: bool operator== (const A &rhs) const; ... };
我知道你不应该使用 std::find(some_map.begin(), some_map.end()) 或 std::lower_bound,因为它会采用线性时间而不是 some_map.lowe
我正在尝试在 Haskell 中定义 Vector3 数据类型,并允许在其上使用 (+) 运算符。我尝试了以下方法: data Vector3 = Vector3 Double Double Doub
我已经为我的类图将运算符重载为“-”。它的用途并不完全直观(糟糕的编码 - 我知道)但是如果我做 graph3 = graph2-graph1 那么图 3 是应该只接收图 2 和图 1 中的那些顶点。
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: Operator overloading 我想重载 以按字母顺序排列字符串,但我不确定该怎么做。 如何再次
下面的代码给我一个编译错误。谁能告诉我为什么? class mytype { public: int value; mytype(int a) { value = a;
这有什么问题吗? class Vec2 attr_accessor :x, :y # ... def += (v) @x += v.x @y += v.y retu
是否可以重载 [] 运算符两次?允许这样的事情:function[3][3](就像在二维数组中一样)。 如果可能的话,我想看看一些示例代码。 最佳答案 您可以重载 operator[] 以返回一个对象
我的团队目前正在与 Lua 合作,创建一个 android 游戏。我们遇到的一件事是表面上无法创建重载构造函数。 我习惯于使用默认值设置一个对象,然后在需要时使其过载。 前任: apples() {
我有一个网页,在某个时候显示一个导航栏,它只不过是一个 a 元素的列表 (ul)。所述 a 元素的大多数样式规则都是通用的。唯一应该改变的部分是要显示的图像,可以从列表中每个 li 元素的 id 标签
我对使用/重载“范围步长”运算符(.. ..)很感兴趣,但我终其一生都无法了解如何使用它。 在文档中它说 // Usage: start .. step .. finish 但是在 F# shell
Java 11(可能无关紧要): public static String toString(Object obj) { return ReflectionToStringBuilder.to
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我无法理解以下代码(针对行号进行注释) class Base { void m1(Object o) { } void m2(String o) { } } publi
我有以下代码片段: #include using namespace std; struct Integer{ int x; Integer(const int val) : x(v
class myclass{ //definitions here }; myclass e; int myarray[10]; /* Do something... */ e = myarray;
为什么不能将下标运算符(operator [])作为 friend 函数重载? 最佳答案 正如Bjarne Stroustrup在D&E book中所说: However, even in the o
我有以下代码片段: #include using namespace std; struct Integer{ int x; Integer(const int val) : x(v
因此,我有一个问题是我最近尝试重载 namespace Eng { /** * A structure to represent pixels */ typedef
如何重载onResume()以正确的方式工作?我想从 activity 返回到 MainActivity ,我希望在其中具有与应用程序启动后相同的状态。我想使用 recreate() 但它循环了或者类
我是一名优秀的程序员,十分优秀!