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

learn more… | top users | synonyms

0
votes
1answer
20 views

How to explicitely pass self as a super class to a method and being called back instead of subclass?

I have 3 classes One base class : MyBaseClass That implements a method : - (void) aSuperMethod { [[UtilClass sharedUtil] doThisAndSendAnswerToMe:self] } - (void) answerReader:(bla ...
1
vote
1answer
38 views

Is it possible to get the same doc for overloaded methods?

I'm searching the best way to make documentations with overloaded methods. I have two methods : /** * does something * @param A * @return result */ public String methodA(Type1 A); /** * does ...
1
vote
1answer
61 views

Is using one generic method or multiple overloaded methods more appropriate?

I am working on a project where I will be working with many types of mathematical values, such as fractions, decimal numbers, and mathematical constants (i.e., pi, Euler's number). I have created an ...
5
votes
4answers
117 views

How to tell a constructor it should only use primitive types

I created an Class which is only able to handle primitive (or ICloneable) Types I want to know if it's possible to say something like: public myobject(primitiv original){...} or do I really need ...
2
votes
4answers
56 views

Optional Method Arguments on byte array

How would i make a default value for a byte array argument? The code below wont work... public static void init(SomeByteArray[] = {1, 2, 3, 4}) { //Do Something } Is this possible? Im doing ...
8
votes
3answers
86 views

Generics method signature and standard signature identical

assume you have a class which has methods using T. And you also have standard methods of the same name. What happens if T is of the same type as the standard method? The standard method is called. ...
0
votes
3answers
64 views

In c++, how can I make two objects of the same class have unique functions behaviour?

Is it possible to have a class function behave completely differently by overloading the function after creating the object? For example, I have a class called Poop and it has a function called ...
3
votes
3answers
125 views

Making Scala choose less specific overloaded method in presence of argument of type Nothing

If come across an interesting case with thunks versus functions in the presence of type Nothing: object Test { def apply(thunk: => Any ): String => Any = _ => thunk def apply(fun: ...
0
votes
1answer
34 views

Method overloading in C# behaving unexpectedly when using params keyword

Ok, back to basics. I am wondering how to correctly overload a method with a params argument. Here's my scenario. I start with my regular method: public void MyMethod(MyObject mo) { // method ...
0
votes
1answer
55 views

C++ method only differs by 'constness' of return type (and const)

just stumbled over something I have not seen before. Consider you've had the following class: class foo { const bar* get() const; bar* get(); } How can a client of foo decide which get() ...
3
votes
4answers
86 views

C# Overload return type - recommended approach

I have a situation where I just want the return type to be different for a method overload, but you can't do this in C#. What's the best way to handle this? Is the fact that I need this mean my ...
12
votes
1answer
101 views

Overloading base method in derived class

So I was playing with C# to see if it matched C++ behavior from this post: http://herbsutter.com/2013/05/22/gotw-5-solution-overriding-virtual-functions/ when I came across this very strange behavior: ...
0
votes
1answer
30 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 ...
2
votes
1answer
77 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
39 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
80 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
64 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
51 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
65 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
45 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
47 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
113 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
213 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
34 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
140 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
104 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
153 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
115 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
50 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
131 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
70 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
152 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
177 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
54 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
283 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
121 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
72 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
145 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
76 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
117 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
142 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
186 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 ...
8
votes
4answers
237 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
119 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
57 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
138 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
216 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
175 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 ...

1 2 3 4 5 8