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

learn more… | top users | synonyms

0
votes
1answer
28 views

Does PHP have a provision for 'method overloading', just like java and some other programming languages? If not, is there an alternative? [duplicate]

I have scenario in my current work that requires overloading a method i.e having a method with the same name but different parameter requirement. And since i have done this in java, i was wondering if ...
1
vote
0answers
30 views

Overloaded methods give “Method with optional parameter is hidden by overload” warning in Resharper

I have a few C# apps that do logging, and the Output method has an overload to accept the message and a StreamWriter, and another overload with an additional parameter for a params array. An example ...
0
votes
3answers
37 views

How do I disambiguate an overloaded method

I am working in a framework with the following method signature public ImageLinkButton AddToolBarButton(string commandName, string text, string toolTip, string imageUrl, string confirmMessage, ...
5
votes
4answers
72 views

Duplicate Method while Method-Overloading

Following code gives compilation error with error "Duplicate Method" static int test(int i){ return 1; } static String test(int i){ return "abc"; } This is expected as both the ...
1
vote
1answer
61 views

How to restrict the generic type to NOT extending a class?

These are simple methods for creating "delegates" in Java: public static <B> Runnable runnableOf(B o, String methodName) { return findMethod(methodName, o.getClass(), o); } public static ...
4
votes
2answers
50 views

Ambigous call when a method has overloads for IDictionary and IDictionary<TKey, TValue>

When a method has two overloads, one accepting IDictionary and another accepting IDictionary<TKey, TValue>, passing new Dictionary<string, int>() to it is considered ambigous. However, if ...
3
votes
5answers
62 views

Method overloading in C

Since C does not support method overloading, how is it possible to have methods like open, that explicitly offers two different signatures: int open(const char *pathname, int flags); int open(const ...
1
vote
3answers
38 views

Varargs in a group?

About Varargs, can i repeat the arguments in a group? For instance, i want to allow users pass in: myFunc(1, "one"); myFunc(1, "one", 2, "two"); myFunc(1, "one", 2, "two", 3, "three"); It seems ...
1
vote
1answer
42 views

How overloaded horzcat() works?

I'm writing a Matlab class that implements custom concatenation in order to present a clean, expressive interface to the user. Unlike the built-in's, the result of the overloaded horzcat() --- for ...
14
votes
3answers
109 views

Generics in overridden methods

Ran into an interesting issue; the following class compiles: public class Test { public static void main(String[] args) throws Exception { A a = new A(); B b = new B(); ...
8
votes
1answer
97 views

How does this overload resolution make any sense?

I just had a unit test fail for a strange reason involving IDictionary<object, object>. IDictionary<K,V> has two Remove methods. One takes a K, the other takes a KeyValuePair<K,V>. ...
15
votes
2answers
196 views

Method overloading not working with different parameters [duplicate]

Why isn't this allowed and treated as same signature? public Object myMethod(Map<String, String[]> values) { return this; } public Object myMethod(Map<String, String> values) { ...
0
votes
1answer
29 views

Why Java PrintStream have to Overload its print() functions?

Here you are: http://developer.android.com/reference/java/io/PrintStream.html#print%28float%29 Just one function could serve all the purposes: public void print (Object o) { if (o == null) { ...
2
votes
5answers
81 views

What is method overloading? [duplicate]

I've found resources that say method overloading is the ability for a language to use the same method with a different outcome, depending on context. Somehow, when I read other definitions, I fell ...
2
votes
2answers
78 views

Overload JFrame setTitle(String) to setTitle(int)

My lesson is to change the setTitle method of JFrame, so it allows integer as a parameter. How to do that? I have to overload that method, right? Anything I tried in the setTitle method ends in a ...
8
votes
1answer
144 views

C# Method overloading and generic interface [duplicate]

I'm confused by a problem we have in our project. I tried to simplify it to reproduce the effect: interface IBar { } class Bar : IBar {} interface IFoo<T> where T : IBar { } class ...
0
votes
1answer
105 views

Compiler not binding to correct generic method overload

Usually, the C# compiler is smart about method binding and type argument inference. But I seem to have stumped it. class Obj { void Handler( int a, int b ) { } Obj() { Method( "", Handler ...
0
votes
1answer
49 views

How to overload equality and print in java?

In java, how can you overload the equality operation and print operation for a class? Like in python, you can do it by doing def __eq__(self): or def __str__(self):, but how can this be done in java? ...
-1
votes
5answers
115 views

how to overload two methods with different input parameters

I have these two functions private void calcResults() { MakePath(id, results, _resultCount); MakePath(id, "XYZ", _resultSICount) } private string MakePath(string subFolder, object obj, int ...
1
vote
1answer
68 views

When overloading methods in Java, where do you calculate aditional parameter data?

I often find myself in situations where I have a method signature like this: public returnType doStuff(mandatoryParam, calculableParam1, calculableParam2); In these situations I sometimes want to ...
0
votes
1answer
106 views

Overloaded method for DelegateCommand

I have a DelegateCommand class and within it 2 constructors. When I pass my property to the constructor of that class I get an error message that says: Error 1 The best overloaded method match ...
0
votes
1answer
85 views

Groovy default method parameters

How to call the below method def to pass only interactionId, transactionId, awResponseFile, testMethodName and expectedNumberOfConsumers? method def void verifyPersistence(String interactionId, ...
0
votes
0answers
43 views

Method overloading and grammar in HTTP REST

Is it possible to overload methods in a HTTP REST API developed by c#/wcf? A sample I'd like to do: A method to add a new car (PUT): http://xy.com/carapi/cars/BMW A method to add a new car (PUT) by ...
3
votes
3answers
141 views

Overloaded methods are not supported by WCF service?

i have two methods named as [OperationContract] UserAccount GetUser(Int32 id); [OperationContract] UserAccount GetUser(string username, string password); when i try to build them, they said you ...
0
votes
2answers
98 views

Ambiguous match found when accessing dll

I am trying load a function in a dll. The dll is loaded but just at the place of invoking the function, I am getting an exception Ambiguous match found Here is the code snippet. Assembly dll = ...
0
votes
0answers
43 views

Can we use the same name for two different functions that take different number of arguments in F#? [duplicate]

I would like to implement a function that can take either 0, 1 or two integer arguments. I want it to look like this: function function (x:int) function (x:int) (y:int) I know that how ...
0
votes
0answers
60 views

method overloading - function __call($method, $arguments) PHP

This is my first time using Stack... and I am really new at PHP... but here is my problem: <?php class Address { private $street; private $city; private $state; function ...
2
votes
1answer
115 views

PHPUnit: Mocking __get() results in “__get() must take exactly 1 argument …”

I got a problem with mocking an overloaded __get($index) method. Code is as follows: public function __get($index) { if (isset($this->vars[$index])) { return ...
0
votes
2answers
71 views

Better way to overload methods in C#

So I have a method with some heavy overloading. However, the concept is fairly simple. "Accept any of there X data types as the first argument, then accept either of these two data types for the two ...
0
votes
2answers
99 views

Reference to function is ambiguous

Why is this cause a compiler error, stating that my references are ambiguous? I have a float, int and string, which should all create separate function signatures, right? Here is what I have so far: ...
1
vote
2answers
131 views

Should this bit of C++ CRTP code compile, and if so what should it do?

I was thinking about using CRTP classes to help with overloading and wondered what the following bit of code would do: #include <iostream> #include <typeinfo> template <class ...
9
votes
2answers
169 views

Is there a C# method overload parameter ordering convention?

Is there any sort of convention in C# (or any object oriented language that supports method overloading) for the following situation? Lets say I have a method foo: public void Foo(int a){//does ...
7
votes
4answers
226 views

Strange Java null behavior in Method Overloading

I have the following code snippet: public static void foo(Object x) { System.out.println("Obj"); } public static void foo(String x) { System.out.println("Str"); } If I call foo(null) why is ...
5
votes
1answer
113 views

C++ Method overload not working

I am trying to write a C++ class that has some overloaded methods: class Output { public: static void Print(bool value) { std::cout << value ? "True" : "False"; } ...
-1
votes
1answer
56 views

Method overloading not sure how

i have these methods: public static MvcHtmlString GetQTip(this HtmlHelper htmlHelper, string propertyName, string message, string propertyNameOverride = "", QTipPosition position = ...
6
votes
3answers
131 views

Compiler not calling appropriate generic overload when passed with value type

I have public functions like this: public static T Get<T>(this Mango m, T defaultValue = default(T)) where T : class { //do something; return something; } public static T? ...
2
votes
3answers
188 views

C++: Can one overload a constructor with a private constructor with the same parameters?

Can one overload a constructor with a private constructor with the same parameters? Basically if something stores a positive integer, then in the public constructor it would make sure a positive ...
4
votes
2answers
147 views

Java overloading method selection

I'm trying to get my head round how Java selects which method is executed: //Example 1 prints Square:add(Figure) Figure fs = new Square(); fs.add(fs); //Example 2 prints Square:add(Figure) Rectangle ...
0
votes
1answer
59 views

Is this Overloaded TASK Method?

I was reading through this code , which is dealing with feeds RSS & Atom feeds it's simply as it looks returns a feedsdata objects bu using the feeds datasource class : using System; using ...
31
votes
4answers
608 views

Why does java promote long parameter to float/double when there's no method which accepts long?

Here's a SSCCE which demonstrates the described (IMHO, weird) behavior: public class Test { public static void print(int param) { System.out.println("int"); } public static void ...
1
vote
1answer
78 views

Safe to define overloaded functions with array inputs in C++?

Is it safe to define the following two methods in C++ and use them without risk of them being mixed up in runtime? void map(float (&a)[10], const double (&b)[6]); void map(float (&a)[10], ...
3
votes
1answer
121 views

Scala: overloaded method resolution

Scala's overloaded method resolution seems strange here: abstract class Parent { type T } class Child extends Parent { type T = Int } def f[T <: Parent](a: Array[T]): Array[T#T] = null def ...
5
votes
6answers
135 views

Call nonconst member version from const [duplicate]

Possible Duplicate: How do I remove code duplication between similar const and non-const member functions? i have two members A &B::GetA (int i) { return *(m_C[m_AtoC[i]]); } ...
1
vote
4answers
83 views

php redeclaring function like in java [duplicate]

Possible Duplicate: php function overloading I want to redeclare function such like this: class Name{ function a(){ something; } function a($param1){ something; } } but it ...
1
vote
1answer
97 views

Should I worry when overriding function.toString in JavaScript?

When I write function wrappers in JavaScript (for example: a throttle or debounce function), I would like to be able to inspect the 'decorated' function and still be able to know what is the ...
1
vote
2answers
82 views

Method won't overload

I am fairly new to C++ and this method just won't overload in Vector class. class Vector { ... void findTriDiagonalDeterminant(mpf_t *det, unsigned long long *d, double offset) { ... ...
2
votes
1answer
176 views

How can I call an overloaded .NET function which uses a C# out argument from Powershell?

I know that Powershell can call .NET code, which might look like this PS> [Reflection.Assembly]::LoadFile(($ScriptDir + ".\SharpSvn-x64\SharpSvn.dll")) PS> $SvnClient = New-Object ...
0
votes
2answers
87 views

How to fix class/function declaration problems in PHP..?

I'm working with a basic class library where the parent class has a function... function functionName($param) { } Then, in a child class extending this class I have... function ...
0
votes
2answers
183 views

Yii - using a single method for both AJAX update/create

I have set up this method for updating a model via AJAX, and have tried to extend it by also creating a new model if it doesn't exist. public function actionAjaxUpdate($id = null) { if($id === ...
5
votes
1answer
368 views

How to resolve ambiguous overloaded function call?

When I compile this program with either gcc-4.6.3 or gcc-4.7.2 the compiler gives me an error about the overloaded call being ambiguous: #include <iostream> #include <functional> class ...

1 2 3 4 5 8