Tagged Questions

The terms overloading and overloaded may refer to: - Constructor and method overloading, a type of polymorphism where different functions with the same name are invoked based on the data types of the parameters passed - Operator overloading, a form of functional or method overloading where the action being overloaded is an operator, such as + or -

learn more… | top users | synonyms (1)

71
votes
7answers
26k views

Function overloading by return type?

Why don't more mainstream statically typed languages support function/method overloading by return type? I can't think of any that do. It seems no less useful or reasonable than supporting overload ...
62
votes
6answers
16k views

Can you overload controller methods in ASP.Net MVC?

Im curious to see if you can overload controller methods in ASP.Net MVC. Whenever I try, I get the error below. The two methods accept different arguements. Is this something that cannot be done? ...
45
votes
6answers
2k views

Is main() overloaded in C++?

There are 2 valid versions of main() exist in C++: int main() // version 1 int main(int argc, char **argv) // version 2 (Even old gcc allows replacing char **argv with int **argv !!) But both ...
29
votes
4answers
2k views

How `is_base_of` works?

Why the following code works? typedef char (&yes)[1]; typedef char (&no)[2]; template <typename B, typename D> struct Host { operator B*() const; operator D*(); }; template ...
29
votes
17answers
3k views

Any reason to overload global new and delete?

Unless you're programming parts of an OS or an embedded system are there any reasons to do so? I can imagine that for some particular classes that are created and destroyed frequently overloading ...
26
votes
6answers
1k views

Why was function overloading added to C++?

I have a C background. I was just wondering why was function overloading added to C++? C doesn't have function overloading but C++ does, what was the need for it? What went across the mind of the ...
26
votes
15answers
2k views

Method Overloading. Can you overuse it?

What's better practice when defining several methods that return the same shape of data with different filters? Explicit method names or overloaded methods? For example. If I have some Products and ...
23
votes
5answers
5k views

Accessing constructor of an anonymous class

Lets say I have a concrete class Class1 and I am creating an anonymous class out of it. Object a = new Class1(){ void someNewMethod(){ } }; Now is there any way I could ...
21
votes
15answers
29k views

Default parameters with C++ constructors

Is it good practice to have a class constructor that uses default parameters, or should I use separate overloaded constructors? For example: // Use this... class foo { private: std::string ...
20
votes
1answer
271 views

Cannot resolve an F# method that has been both overridden and overloaded from C#

The following F# code declares base and descendant classes. The base class has a virtual method 'Test' with a default implementaion. The descendant class overrides the base class method and also adds ...
20
votes
5answers
2k views

Why does autoboxing make some calls ambiguous in Java?

I noticed today that auto-boxing can sometimes cause ambiguity in method overload resolution. The simplest example appears to be this: public class Test { static void f(Object a, boolean b) {} ...
20
votes
6answers
4k views

Should you declare methods using overloads or optional parameters in C# 4.0?

I was watching Anders' talk about C# 4.0 and sneak preview of C# 5.0, and it got me thinking about when optional parameters are available in C# what is going to be the recommended way to declare ...
19
votes
7answers
655 views

Simplifying const Overloading?

I've been teaching a C++ programming class for many years now and one of the trickiest things to explain to students is const overloading. I commonly use the example of a vector-like class and its ...
17
votes
1answer
326 views

Is there a way to overload the regex binding operator `=~` in Perl?

I am working on a small DSL that uses the nomethod fallback for overloading to capture the operators used on the overloaded values. This is similar to the function of the symbolic calculator ...
17
votes
10answers
2k views

C++ overload resolution

Given the following example, why do I have to explicitly use the statement b->A::DoSomething() rather than just b->DoSomething()? Shouldn't the compiler's overload resolution figure out which ...
15
votes
3answers
303 views

Method overload resolution unexpected behavior

I'm wrestling with a weird, at least for me, method overloading resolution of .net. I've written a small sample to reproduce the issue: class Program { static void Main(string[] args) { ...
15
votes
4answers
925 views

Public operator new, private operator delete: getting C2248 “can not access private member” when using new

A class has overloaded operators new and delete. new is public, delete is private. When constructing an instance of this class, I get the following error: pFoo = new Foo(bar) example.cpp(1): error ...
14
votes
4answers
467 views

Overloading operator ->

Here is my code example: class X { public: void f() {} }; class Y : public X { public: X& operator->() { return *this; } void f() {} }; int main() { Y t; ...
14
votes
4answers
736 views

Why overload true and false instead of defining bool operator?

I've been reading about overloading true and false in C#, and I think I understand the basic difference between this and defining a bool operator. The example I see around is something like: public ...
13
votes
5answers
3k views

Why can't I overload constructors in PHP?

I know it can't be done, well I hope it can't or my Google skills have failed me. But my annoyance is beyond that now, I have abandoned all hope of ever being able to overload my constructors in PHP, ...
13
votes
4answers
1k views

Calling constructor overload when both overload have same signature

Consider the following class, class Foo { public Foo(int count) { /* .. */ } public Foo(int count) { /* .. */ } } Above code is invalid and won't compile. ...
13
votes
5answers
21k views

Function overloading in Python: Missing [closed]

As this says: http://mail.python.org/pipermail/python-list/2003-May/206149.html Function overloading is absent in Python. As far as I feel this a big handicap since its also an OO language. ...
12
votes
5answers
342 views

Polymorphism, overloads and generics in C#

class Poly { public static void WriteVal(int i) { System.Console.Write("{0}\n", i); } public static void WriteVal(string s) { System.Console.Write("{0}\n", s); } } class ...
12
votes
8answers
854 views

Is this a well known design pattern? What is its name?

I have seen this often in code, but when I speak of it I don't know the name for such 'pattern' I have a method with 2 arguments that calls an overloaded method that has 3 arguments and intentionally ...
12
votes
2answers
2k views

Overload constructor for Scala's Case Classes?

In Scala 2.8 is there a way to overload constructors of a case class? If yes, please put a snippet to explain, if not, please explain why?
11
votes
2answers
187 views

Why doesn't this overloading/namespace/template-related C++ code compile?

Here is some C++ code: namespace A { int f(int x) { return 0; } int f(long x) { return 1; } template<class T> int g(T x) { return f(x); } } namespace B { struct C {}; } namespace A { int ...
11
votes
7answers
402 views

C++ return type overload hack

I was bored and came up with such hack (pseudocode): 1 struct proxy { 2 operator int(); // int function 3 operator double(); // double function 4 proxy(arguments); 5 arguments ...
11
votes
4answers
4k views

F# functions with generic parameter types

I am trying to figure out how to define a function that works on multiple types of parameters (e.g. int and int64). As I understand it, function overloading is not possible in F# (certainly the ...
11
votes
4answers
3k views

What is the use of const overloading in C++?

In C++, a function's signature depends partly on whether or not it's const. This means that a class can have two member functions with identical signatures except that one is const and the other is ...
10
votes
1answer
119 views

C++11: Abstracting over const, volatile, lvalue reference, and rvalue reference qualified member function pointers?

C++03 lets you qualify function parameters as being const, volatile, and/or lvalue references (&). C++11 adds one more: rvalue references (&&). Furthermore, C++ lets you overload ...
10
votes
3answers
202 views

Difference between explicit specialization and regular functions when overloading a template function

I'm on a roll today. Here goes n00b question number 7: What's the difference between explicit specialization and just regular functions when you try to overload a template function? What's the ...
10
votes
2answers
157 views

More or less equal overloads

The following code compiles in C# 4.0: void Foo(params string[] parameters) { } void Foo(string firstParameter, params string[] parameters) { } How does the compiler know which overload you're ...
10
votes
7answers
847 views

Is there a way to Overload a Property in .NET

I've done plenty of Method Overloading, but now I have an instance where I would like to Overload a Property. The IDE in Visual Studio seems to allow it, since I can actually set up the two ...
10
votes
4answers
836 views

C++: Constructor accepting only a string literal

Is it possible to create a constructor (or function signature, for that matter) that only accepts a string literal, but not an e.g. char const *? Is it possible to have two overloads that can ...
10
votes
5answers
1k views

Differences between template specialization and overloading for functions?

So, I know that there is a difference between these two tidbits of code: template <typename T> T inc(const T& t) { return t + 1; } template <> int inc(const int& t) { ...
10
votes
5answers
7k views

Constructor overloading in Java - best practice

There are a few topics similar to this, but I couldn't find one with a sufficient answer. I would like to know what is the best practice for constructor overloading in Java. I already have my own ...
9
votes
5answers
214 views

Why won't Java call the (List<Object>) method, if I have an (Object…) one?

I have the following class which stores a list of object arrays. public class Test { private List<Object[]> list = new ArrayList<Object[]>(); public void addList(Object... obj) { ...
9
votes
2answers
225 views

Overload resolution of virtual methods

Consider the code public class Base { public virtual int Add(int a,int b) { return a+b; } } public class Derived:Base { public override int Add(int a,int b) { return a+b; ...
9
votes
4answers
432 views

C# function pointer in overloaded function

I have 2 overloaded C# functions like this: private void _Insert(Hashtable hash, string tablename, Func<string, object[], SqlCommand> command) private void _Insert(Hashtable hash, string ...
9
votes
5answers
622 views

Why does the Scala compiler disallow overloaded methods with default arguments?

While there might be valid cases where such method overloadings could become ambiguous, why does the compiler disallow code which is neither ambiguous at compile time nor at run time? Example: // ...
9
votes
2answers
218 views

Why is Scala's behavior in case of overloading with by-name parameters different from the case with by-value parameters?

Given this Scala code: object test { def byval(a: Int) = println("Int") def byval(a: Long) = println("Long") def byname(a: => Int) = println("=> Int") def byname(a: => Long) = ...
9
votes
7answers
469 views

: this() As a constructor

I'm trying to get a better understanding of general practice... specifically deriving this() in a constructor. I understand that its less code, but I consider it less readable. Is it common/good ...
9
votes
2answers
631 views

C# rules of function overloading

What are the rules regarding function Overloading? I have the following code: public T genericFunc<T>() where T : Component, new() { T result = new T(); overloadedFunction( result ); } ...
9
votes
5answers
1k views

Overload handling of std::endl?

I want to define a class MyStream so that: MyStream myStream; myStream << 1 << 2 << 3 << std::endl << 5 << 6 << std::endl << 7 << 8 << ...
9
votes
4answers
694 views

Why does this work? Method overloading + method overriding + polymorphism

In the following code: public abstract class MyClass { public abstract bool MyMethod( Database database, AssetDetails asset, ref string errorMessage); } public sealed class ...
9
votes
5answers
582 views

Priority when choosing overloaded template functions in C++

I have the following problem: class Base { }; class Derived : public Base { }; class Different { }; class X { public: template <typename T> static const char *func(T *data) { // Do ...
9
votes
4answers
2k views

Python: how to call a property of the base class if this property is being overwritten in the derived class?

I'm changing some classes of mine from an extensive use of getters and setters to a more pythonic use of properties. But now I'm stuck because some of my previous getters or setters would call the ...
9
votes
17answers
7k views

Puzzle: Overload a C++ function according to the return value

We all know that you can overload a function according to the parameters: int mul(int i, int j) { return i*j; } std::string mul(char c, int n) { return std::string(n, c); } Can you overload a ...
8
votes
3answers
238 views

Extracting the return type from an overloaded function

I want to extract the return type of a function. Problem is, there are other functions with the same name but different signature, and I can not get C++ to select the appropriate one. I know about ...
8
votes
2answers
237 views

How to diagnose ambiguous call to sqrt(int&) in g++ 4.3.4

My code is as follows: #include <cmath> #include <iostream> float foo(float f) { std::cout << "float\n"; return f; } double foo(double d) { std::cout << ...

1 2 3 4 5 15