Tagged Questions
The overload-resolution tag has no wiki summary.
89
votes
5answers
1k views
Why would adding a method add an ambiguous call, if it wouldn't be involved in the ambiguity
I have this class
public class Overloaded
{
public void ComplexOverloadResolution(params string[] something)
{
Console.WriteLine("Normal Winner");
}
public void ...
21
votes
1answer
570 views
What are the pitfalls of ADL?
Some time ago I read an article that explained several pitfalls of argument dependent lookup, but I cannot find it anymore. It was about gaining access to things that you should not have access to or ...
16
votes
5answers
283 views
Overload resolution and virtual methods
Consider the following code (it's a little long, but hopefully you can follow):
class A
{
}
class B : A
{
}
class C
{
public virtual void Foo(B b)
{
...
15
votes
4answers
537 views
C++0x confusion with using declarations
What should happen for this case:
struct A {
void f();
};
struct B : virtual A {
using A::f;
};
struct C : virtual A {
using A::f;
};
struct D : B, C {
void g() {
f();
}
};
The ...
13
votes
4answers
365 views
Java: runtime method resolution
I'm working on some dynamic invocation of code via an interpreter, and I'm getting into the sticky ugly areas of method resolution as discussed in JLS section 15.12.
The "easy" way to choose a method ...
13
votes
3answers
339 views
Overload resolution and arrays: which function should be called?
Consider the following program:
#include <cstddef>
#include <cstdio>
void f(char const*&&) { std::puts("char const*&&"); } // (1)
void f(char const* const&) ...
12
votes
3answers
143 views
Should this compile? Overload resolution and implicit conversions
This example seems to compile with VC10 and gcc (though my version of gcc is very old).
EDIT: R. Martinho Fernandez tried this on gcc 4.7 and the behaviour is still the same.
struct Base
{
...
9
votes
1answer
166 views
Strange C# compiler behavior (overload resolution)
I've found very strange C# compiler behavior for following code:
var p1 = new SqlParameter("@p", Convert.ToInt32(1));
var p2 = new SqlParameter("@p", 1);
Assert.AreEqual(p1.Value, ...
9
votes
2answers
307 views
C++0x const RValue reference as function parameter
I am trying to understand why someone would write a function that takes a const rvalue reference.
In the code example below what purpose is the const rvalue reference function (returning "3").
And ...
9
votes
5answers
251 views
Order of operator overload resolution involving temporaries
Consider the following minimal example:
#include <iostream>
using namespace std;
class myostream : public ostream {
public:
myostream(ostream const &other) :
...
8
votes
1answer
137 views
Why does C# compiler overload resolution algorithm treat static and instance members with equal signature as equal?
Let we have two members equal by signature, but one is static and another - is not:
class Foo
{
public void Test() { Console.WriteLine("instance"); }
public static void Test() { ...
7
votes
2answers
217 views
Strange case of C++11 overload resolution
I came across a rather strange case of overload resolution today. I reduced it to the following:
struct S
{
S(int, int = 0);
};
class C
{
public:
template <typename... Args>
C(S, ...
7
votes
1answer
175 views
Built-in operator candidates
C++03 $13.6/1- "[...]If there is a
user-written candidate with the same
name and parameter types as a built-in
candidate operator function, the
built-in operator function is hidden
and is ...
6
votes
3answers
199 views
How does the method overload resolution system decide which method to call when a null value is passed?
So for instance you have a type like:
public class EffectOptions
{
public EffectOptions ( params object [ ] options ) {}
public EffectOptions ( IEnumerable<object> options ) {}
...
6
votes
2answers
185 views
Generics, overload resolution and delegates (sorry, can't find a better title) [closed]
Possible Duplicate:
Why is Func<T> ambiguous with Func<IEnumerable<T>>?
I noticed a very weird overload resolution issue with generics...
Consider the following methods:
...
6
votes
1answer
595 views
If the address of a function can not be resolved during deduction, is it SFINAE or a compiler error?
In C++0x SFINAE rules have been simplified such that any invalid expression or type that occurs in the "immediate context" of deduction does not result in a compiler error but rather in deduction ...
5
votes
1answer
71 views
Looking for Java code implementing javac's overload resolution algorithm
Suppose I have an array of Objects (specifically, an Object[]) and an array of Constructor objects.
Can anybody refer me to some Java code that can look through the Constructor objects and choose the ...
5
votes
2answers
108 views
Method overload resolution using dynamic argument
This may have been answered before. I see many "dynamic method overload resolution" questions, but none that deal specifically with passing a dynamic argument. In the following code, in Test, the last ...
5
votes
2answers
158 views
Ambiguous call of overloaded constructor due to super class (pass by value)
I wrote a little C++ wrapper around some parts of GSL and encounter the following puzzle (for me). The code (reduced to its essentials) is as follows:
#include <stdlib.h>
struct ...
5
votes
4answers
214 views
Why does this constructor overload resolve incorrectly?
This is my (stripped) class and instantiation of one object:
template <typename T, typename Allocator = std::allocator<T> >
class Carray {
typedef typename Allocator::size_type ...
5
votes
2answers
206 views
Method overload resolution with regards to generics and IEnumerable
I noticed this the other day, say you have two overloaded methods:
public void Print<T>(IEnumerable<T> items) {
Console.WriteLine("IEnumerable T");
}
public void Print<T>(T ...
4
votes
3answers
116 views
Why non-const version is selected over the const version for class?
Following is the test code:
struct A
{
operator int ();
operator int () const;
};
void foo (const int);
Now, upon invoking:
foo(A()); // calls A::operator int()
Why does it always chooses ...
4
votes
6answers
210 views
Why NULL is converted to string*?
I saw the following code:
class NullClass {
public:
template<class T> operator T*() const { return 0; }
};
const NullClass NULL;
void f(int x);
void f(string *p);
f(NULL); // converts ...
4
votes
3answers
407 views
How to dump candidates in function overload resolution?
How can I dump candidate functions (or viable functions or best viable functions) for a function invocation?
I know g++ provides an option to dump class hierarchy. (In fact, Visual Studio 2010 ...
4
votes
1answer
223 views
Why does Scala type inference fail here?
I have this class in Scala:
object Util {
class Tapper[A](tapMe: A) {
def tap(f: A => Unit): A = {
f(tapMe)
tapMe
}
def tap(fs: (A => Unit)*): A = {
...
4
votes
2answers
154 views
Overload Resolution and Optional Parameters in C# 4
I am working with some code that has seven overloads of a function TraceWrite:
void TraceWrite(string Application, LogLevelENUM LogLevel, string Message, string Data = "");
void TraceWrite(string ...
4
votes
1answer
329 views
Overloading, generic type inference and the 'params' keyword
I just noticed a strange behavior with overload resolution.
Assume that I have the following method :
public static void DoSomething<T>(IEnumerable<T> items)
{
// Whatever
// ...
4
votes
3answers
213 views
Why is the compiler not selecting my function-template overload in the following example?
Given the following function templates:
#include <vector>
#include <utility>
struct Base { };
struct Derived : Base { };
// #1
template <typename T1, typename T2>
void f(const ...
3
votes
3answers
147 views
Why is “this” required here (extension method)?
Meta note: it is impossible to search for the word "this".
I've just run into a strange scenario in ASP.NET where the this keyword is required. But it's not for the purpose of resolving between local ...
3
votes
2answers
111 views
Change constructor precedence
Is it possible to define a constructor for all derived types and a template constructor?
I've written this testcase to illustrate my problem:
#include <iostream>
class Variant;
class ...
3
votes
2answers
90 views
Strange compile error regarding overload resolution
This code fragment:
namespace ns
{
struct last;
struct first
{
typedef last next;
};
template <typename T>
struct chain
{
chain<typename ...
2
votes
2answers
85 views
c++ overload operator resolution
I'm learning c++ and using C++ Primer. Consider the following exercise 14.46:
class Complex {
Complex(double);
// ...
};
class LongDouble {
friend LongDouble ...
2
votes
1answer
98 views
StackOverflowException in overloaded methods
I'm trying to call overloaded method in code like this:
public abstract class BaseClass<T>
{
public abstract bool Method(T other);
}
public class ChildClass : BaseClass<ChildClass>
{
...
2
votes
2answers
129 views
Trouble with const/non-const overload resolution
I have a class that looks something like this:
class ClassA
{
public:
float Get(int num) const;
protected:
float& Get(int num);
}
Outside of the class, I call the Get() function.
...
2
votes
2answers
205 views
C# overload methods behavior with interface [closed]
Possible Duplicate:
C# 4: conflicting overloaded methods with optional parameters
I just have one small research and created next code.
namespace Test {
class Program
{
public ...
2
votes
1answer
215 views
Overload on ostream in a variadic template function
I have a variadic function that I want to overload on the first parameter type.
void write( void ) { }
void write( std::ostream& ) { }
template< typename Head, typename... Rest >
void ...
2
votes
3answers
239 views
Avoiding ambiguous invocation error with generic types
I have a two way dictionary class that I am making to allow me to do a fast lookup in either direction.
My class looks (partially) like this:
public class DoubleDictionary<A,B>
{
private ...
2
votes
2answers
393 views
Overloaded method-group argument confuses overload resolution?
The following call to the overloaded Enumerable.Select method:
var itemOnlyOneTuples = "test".Select<char, Tuple<char>>(Tuple.Create);
fails with an ambiguity error (namespaces removed ...
2
votes
2answers
227 views
Function with parameter type that has a copy-constructor with non-const ref chosen?
Some time ago I was confused by the following behavior of some code when I wanted to write a is_callable<F, Args...> trait. Overload resolution won't call functions accepting arguments by ...
1
vote
2answers
145 views
Why does my lambda report “Not all code paths return a value”?
The following code gives an error
Not all code paths return a value in lambda expression of type
'System.Func'.
It highlights line =>. Not sure why?
var ui = new ...
1
vote
5answers
102 views
C++ compiler picking the wrong overload of a class member function
I have this code:
template <class T>
class Something
{
T val;
public:
inline Something() : val() {}
inline Something(T v) : val(v) {}
inline T& get() const { return val; }
...
1
vote
2answers
99 views
vb odd variable use problem as filepath
I have this function:
Function WriteTextToFile(ByVal data)
Dim file As New System.IO.StreamWriter("E:\storage.txt")
file.WriteLine(data)
file.Close()
End Function
I have been trying to ...
1
vote
2answers
227 views
Unhelpful (maybe wrong?) gcc error message
I just spent a couple of hours debugging a compiler error that I could have fixed immediately if the compiler's error message had been more helpful.
I've reduced it to a simple example:
template ...
1
vote
4answers
676 views
How to resolve ambiguity of call to overloaded function with literal 0 and pointer
I'm pretty sure this must have been here already, but I didn't find much information on how to solve this kind of problem (without casting on the call):
Given two overloads, I want that a call with ...
1
vote
2answers
626 views
distance calculation error in c++
#include <iostream>
#include <cmath>
#include <vector>
using namespace std;
int square(int a){
return a*a;
}
struct Point{
int x,y;
};
int distance (const Point& ...
1
vote
2answers
211 views
Overload Resolution/Ambiguity in name lookup(which one)
$7.3.3/14 (C++03)
struct A { int x(); };
struct B : A { };
struct C : A {
using A::x;
int x(int);
};
struct D : B, C {
using C::x;
int x(double);
};
int f(D* d) {
return d->x(); // ...
1
vote
2answers
79 views
Why does the compiler not resolve this call to a template function?
In below program why does the compiler generate an error for the call to the printMax template function and not the call to the printMaxInts function?
#include <iostream>
template<class ...
0
votes
1answer
52 views
Using Bind to produce a parameterless function results in error
I am trying to figure out the proper use of std::bind with a boost::signal2 signal.
The error set I am getting with clang++ (from Xcode 4.2.1) is:
~/Projects/Myron/Myron/main.cpp:29:59: error: ...
0
votes
4answers
139 views
What is the cause of this overload resolution headache?
I've got a program where I've got a lot of nested if/switch statements which were repeated in several places. I tried to extract that out and put the switches in a template method class, and then ...
0
votes
2answers
179 views
Template function overload not called as expected
My situation is the following:
I have a template wrapper that handles the situation of values and object being nullable without having to manually handle pointer or even new. This basically boils ...