Tagged Questions

Method overloading is the concept of multiple methods with the same name, but different signatures.

learn more… | top users | synonyms

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 ...
61
votes
6answers
30k views

Function overloading in Javascript - Best practices

What is the best way (or ways) to fake function overloading in Javascript? I know it is not possible to overload functions in Javascript as in other languages. If i needed a function with two uses ...
21
votes
4answers
2k views

Why “avoid method overloading”?

Why does Jorge Ortiz advise to avoid method overloading?
21
votes
8answers
1k views

Creating methods with infinite parameters?

In C# you can do this: foo = string.Format("{0} {1} {2} {3} ...", "aa", "bb", "cc" ...); This method Format() accepts infinite parameters, being the first one how the string should be formatted ...
19
votes
10answers
3k views

method overloading vs optional parameter in C# 4.0

which one is better? at a glance optional parameter seems better (less code, less XML documentation, etc), but why do most MSDN library classes use overloading instead of optional parameters? Is ...
18
votes
3answers
819 views

Reference is ambiguous with generics

I'm having quite a tricky case here with generics and method overloading. Check out this example class: public class Test { public <T> void setValue(Parameter<T> parameter, T value) { ...
18
votes
7answers
655 views

Polymorphism and method overloading

I have a quick and straighforward question: I have this simple class: public class A { public void m(Object o) { System.out.println("m with Object called"); } public void ...
18
votes
2answers
548 views

Why does Guava's ImmutableList have so many overloaded of() methods?

I was just looking at Guava's ImmutableList and I noticed that the of() method was overloaded 12 times. It looks to me that all they needed was: static <E> ImmutableList<E> of(); static ...
17
votes
6answers
1k views

Best practices regarding equals: to overload or not to overload?

Consider the following snippet: import java.util.*; public class EqualsOverload { public static void main(String[] args) { class Thing { final int x; Thing(int x) ...
14
votes
7answers
532 views

Properly removing an Integer from a List<Integer>

Here's a nice pitfall I just encountered. Consider a list of integers: List<Integer> list = new ArrayList<Integer>(); list.add(5); list.add(6); list.add(7); list.add(1); Any educated ...
14
votes
3answers
4k views

Method overloading in Objective-C?

as far as my knowledge, objective-C does not support method overloading.What can be the alternative for this in Objective-C? or should i always use different method name?
13
votes
3answers
2k views

Why does String.valueOf(null) throw a NullPointerException?

according to the documentation, the method String.valueOf(Object obj) returns: if the argument is null, then a string equal to "null"; otherwise, the value of obj.toString() is returned. But how ...
12
votes
4answers
180 views

Java static imports

Just by experiment I discovered that Java non static methods overrides all same named methods in scope even at static context. Even without allowing parameter overloading. Like import ...
12
votes
4answers
165 views

Why are C# calls different for overloaded methods for different values of the same type?

I have one doubt concerning c# method overloading and call resolution. Let's suppose I have the following C# code: enum MyEnum { Value1, Value2 } public void test() { method(0); // this calls ...
12
votes
3answers
1k views

C#: Passing null to overloaded method - which method is called?

Say I have two overloaded versions of a C# method: void Method( TypeA a ) { } void Method( TypeB b ) { } I call the method with: Method( null ); Which overload of the method is called? What can ...
11
votes
2answers
99 views

Why do raw types in one place cause generic callsites somewhere else to be treated as raw?

Consider this example: import java.util.*; class Foo<T> { public int baz(List<String> stringlist) { return 1; } public int baz(ArrayList<Object> objectlist) { return 2; } ...
11
votes
8answers
975 views

Java - why no return type based method overloading?

I know this is not possible but can anyone provide a theory as to why Java chose not to support this? I am asking because I just ran into a situation where I think it would be nice to have.
11
votes
6answers
573 views

Should my PHP functions accept an array of arguments or should I explicitly request arguments?

In a PHP web application I'm working on, I see functions defined in two possible ways. Approach 1: function myfunc($arg1, $arg2, $arg3) Approach 2: // where $array_params has the structure ...
10
votes
2answers
212 views

Method overloading. How does it work?

Assume that I have these two overloaded functions. public static void Main(string[]args) { int x=3; fn(x); } static void fn(double x) { Console.WriteLine("Double"); } static void ...
10
votes
1answer
105 views

Force accessing of a def

Considering object A { def m(i: Int) = i val m = (i: Int) => i * 2 } one gets scala> A.m(2) <console>: error: ambiguous reference to overloaded definition, both value m in object A ...
10
votes
4answers
275 views

Type Erasure and Overloading in Java: Why does this work?

I have the following code: public class Pair< T, U > { public T first; public U second; } public class Test { public int method( Pair< Integer, Integer > pair ) { ...
10
votes
9answers
1k views

Scala double definition (2 methods have the same type erasure)

I wrote this in scala and it won't compile: class TestDoubleDef{ def foo(p:List[String]) = {} def foo(p:List[Int]) = {} } the compiler notify: [error] double definition: [error] method ...
9
votes
2answers
382 views

How do I call overloaded Java methods in Clojure

For this example Java class: package foo; public class TestInterop { public String test(int i) { return "Test(int)"; } public String test(Object i) { return "Test(Object)"; } } When ...
9
votes
1answer
455 views

C#, XmlDoc: How to reference method overloads

If I have these two methods public Foo Get(string bar) { ... } public Foo Get(int bar) { ... } And write this piece of xml documentation on a different method /// <summary> /// Has a close ...
9
votes
3answers
4k views

How to use Reflection to Invoke an Overloaded Method in .NET

Is there a way to Invoke an overloaded method using reflection in .NET (2.0). I have an application that dynamically instantiates classes that have been derived from a common base class. For ...
8
votes
5answers
127 views

Why isn't the most specific method called based on type of parameter

Total OO noob question here. I have these two methods in a class private void StoreSessionSpecific(LateSession dbSession, SessionViewModel session) { session.LateSessionViewModel.Guidelines = ...
8
votes
6answers
707 views

How can I differentiate between def foo[A](xs: A*) and def foo[A, B](xs: (A, B)*)?

I know that type erasure makes them look equal, type-wise, at runtime, so that: class Bar { def foo[A](xs: A*) { xs.foreach(println) } def foo[A, B](xs: (A, B)*) { xs.foreach(x => ...
8
votes
3answers
1k views

Shadows vs Overloads in VB.NET

When we have new in C#, that personally I see only as a workaround to override a property that does not have a virtual/overridable declaration, in VB.NET we have two "concepts" Shadows and Overloads. ...
8
votes
2answers
868 views

ruby operator overloading question

i've been messing around with ruby and opengl for entertainment purposes, and i decided to write some 3d vector/plane/etc classes to pretty up some of the math. simplified example: class Vec3 ...
7
votes
2answers
86 views

Two-step method resolution with inheritance and generic constraints

I've encountered something quite surprising when using generic constraints with inheritance. I have an overloaded methods Foo that differ with parameter - either base or derived class instance. In ...
7
votes
2answers
141 views

Methods overloading while inheritance in C++

I have a legacy code: struct Iface1 { virtual ~Iface1() {} virtual void foo(const int arg1) const = 0; }; struct Iface2 { virtual ~Iface2() {} virtual void foo(const int arg1, const int ...
7
votes
6answers
480 views

C# Optional Parameters or Method Overload?

Since C# added optional parameters is it considered a better practice to use optional parameters or method overloads or is there a particular case where you would want to use one over the other. i.e a ...
7
votes
4answers
339 views

Method overloading and polymorphism

class Program { static void Main(string[] args) { List<A> myList = new List<A> {new A(), new B(), new C()}; foreach (var a in myList) ...
7
votes
3answers
480 views

C++ calling completely wrong (virtual) method of an object

I have some C++ code (written by someone else) which appears to be calling the wrong function. Here's the situation: UTF8InputStreamFromBuffer* cstream = foo(); wstring fn = L"foo"; DocumentReader* ...
7
votes
2answers
136 views

Can I define a method to accept EITHER a Func<T> OR an Expression<Func<T>>?

If I attempt to write two overloads of a method, one accepting an Expression<Func<T>> parameter and another accepting a Func<T>, I will get a compiler error on trying to call the ...
7
votes
7answers
274 views

C# Generic overloading of List<T> : How would this be done?

The StringBuilder class allows you, in what I consider to be a very intuitive way, to chain method calls to .Append(), .AppendFormat() and some others like so: StringBuilder sb = new StringBuilder(); ...
7
votes
6answers
375 views

Overloading a Native PHP Function to Encypt Data for HIPAA Compliance

Background Information: I'm part of a team of developers that runs a web application that stores and retrieves HIPAA (medical) data. Recently, the HIPAA guidelines were updated to include a policy ...
6
votes
4answers
103 views

Can you do method overloading with generics and only change the generic type of the method signature?

If you don't use Java Generics, I believe it's not possible to have two methods in the same class that differ only in their return type. In other words, this would be illegal: public HappyEmotion ...
6
votes
4answers
509 views

Re-define wait method in a Java interface

I would like to use wait(int) as the signature of a method in a fluent API (used for http://www.jooq.org). The goal is to be able to construct SQL queries like this example: SELECT * FROM T_AUTHOR ...
6
votes
3answers
771 views

Calling base class overridden function from base class method

public class A { public void f1(String str) { System.out.println("A.f1(String)"); this.f1(1, str); } public void f1(int i, String str) { ...
6
votes
6answers
442 views

Cost of using params in C#

Does anyone have advice for using the params in C# for method argument passing. I'm contemplating making overloads for the first 6 arguments and then a 7th using the params feature. My reasoning is to ...
6
votes
4answers
518 views

Java overloading and overriding

We always say that method overloading is static polymorphism and overriding is runtime polymorphism. What exactly do we mean by static here? Is the call to a method resolved on compiling the code? So ...
5
votes
2answers
109 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
4answers
916 views

C++ Overload Static Function with Non-Static Function

I would like to print two different things depending on whether a function is called statically with Foo::print() or from an instance of Foo foo; foo.print(); EDIT: Here is a class definition that ...
5
votes
2answers
208 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 ...
5
votes
5answers
499 views

Java method keyword “final” and its use

When I create complex type hierarchies (several levels, several types per level), I like to use the final keyword on methods implementing some interface declaration. An example: interface Garble { ...
5
votes
2answers
1k views

C# Action and Func parameter overloads

I need a method that takes an Action (or a Func), but the Action has a mixed number of parameters. What is the most straight forward and compact way to implement these overloads: public void ...
5
votes
5answers
226 views

Why is the return type not considered when differentiating methods? [closed]

Possible Duplicate: Java - why no return type based method overloading? The compiler does not consider return type when differentiating methods, so you cannot declare two methods ...
5
votes
7answers
739 views

How to prevent a method from overloading in Java?

Overriding a method can be prevented by using the keyword final, likewise how to prevent overloading?
5
votes
5answers
486 views

Different behaviour of method overloading in C#

I was going through C# Brainteasers (http://www.yoda.arachsys.com/csharp/teasers.html) and came across one question: what should be the output of this code? class Base { public virtual void ...

1 2 3 4 5