Tagged Questions

4
votes
3answers
118 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
212 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
1answer
229 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
156 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
3answers
218 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 ...
2
votes
1answer
101 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> { ...