Tagged Questions

17
votes
17answers
901 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 frequen …
15
votes
16answers
880 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 …
14
votes
5answers
683 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 …
11
votes
4answers
323 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 …
10
votes
10answers
968 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 figur …
9
votes
4answers
734 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 cons …
9
votes
14answers
4k 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: …
8
votes
7answers
2k 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 …
7
votes
5answers
214 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 i …
7
votes
4answers
142 views

Can smart pointers selectively hide or re-direct function calls to the objects they are wrapping?

I'm working on a project where certain objects are referenced counted -- it's a very similar setup to COM. Anyway, our project does have smart pointers that alleviate the need to …
6
votes
4answers
277 views

Can bin() be overloaded like oct() and hex() in Python 2.6?

In Python 2.6 (and earlier) the hex() and oct() built-in functions can be overloaded in a class by defining __hex__ and __oct__ special functions. However there is not a __bin__ sp …
6
votes
3answers
983 views

C++ - Constructor overloading - private and public

Hi All, Can you tell me why the following code is giving me the following error - call of overloaded "C(int)" is ambiguous I would think that since C(char x) is private, only the …
6
votes
3answers
2k 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 th …
6
votes
9answers
1k views

Is overloading the only way to have default function arguments in C#?

Is it true that the only way to handle default function arguments is through function overloading? For example, in PHP I can do this: function foo($x, $y=0) { } Would the best …
5
votes
4answers
796 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 alr …

1 2 3 4 5 8 next
15 30 50 per page