Tagged Questions

For issues relating to overloading functions or methods.

learn more… | top users | synonyms

17
votes
10answers
12k views

function overloading in C

Is there any way to achieve function overloading in C? I am looking at simple functions to be overloaded like foo (int a) foo (char b) foo (float c , int d) I think there is no straight ...
14
votes
5answers
214 views

How does overloaded template function selection (pattern matching) work in std::vector insert?

Consider the following declarations of a std::vector (taken from cplusplus - EASTL has the same declarations) iterator insert ( iterator position, const T& x ); void insert ( iterator ...
14
votes
3answers
269 views

Why does man 2 open say this?

I ran into this question while typing man 2 open. It says that there are two kinds of open, one with two args, and one with three! last time i checked we could not overload functions in C. How did ...
14
votes
5answers
333 views

Function overloading in C

Today, looking at the man page for open(), I've noticed this function is 'overloaded': int open(const char *pathname, int flags); int open(const char *pathname, int flags, mode_t mode); I ...
11
votes
8answers
2k views

In C++ how is function overloading typically implemented?

If there is no function overloading, the function name serves as the address of the function code, and when a function is being called, its address is easy to find using its name. However with ...
10
votes
2answers
155 views

Why can't GCC disambiguate multiple inherited functions (yet clang can)? [closed]

Possible Duplicate: Why do multiple-inherited functions with same name but different signatures not get treated as overloaded functions? This fails to compile in the indicated place with ...
9
votes
1answer
165 views

Overloading functions in Matlab

Is there a way to have two functions with the same name but with different arguments inside the same class in Matlab?
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 ...
7
votes
2answers
253 views

how to use overloaded functions with default arguments in algorithms?

I know the answer to the frequently-asked how to specify a pointer to an overloaded function?: either with assignment or with a cast, and every other C++ tutorial uppercases a string like this (give ...
7
votes
5answers
95 views

Is a bad practice to Return diferent types when overloading a method?

Given this example: Interface CustomersDao Function Get(ByVal Id As Integer) As Customer Function Get(ByVal Filter As Filter) As IList(Of Customer) End Interface Public Sub Main() Dim ...
7
votes
6answers
2k views

PHP function overloading

how to overload a function in PHP just like in C++ by varying the number of arguments or type of arguments. http://uologic.com
6
votes
5answers
598 views

Function Overloading Based on Value vs. Const Reference

Does declaring something like the following void foo(int x) { std::cout << "foo(int)" << std::endl; } void foo(const int &x) { std::cout << "foo(const int &)" ...
6
votes
4answers
369 views

overloading vs overridding

I am a little confused over the two terminologies and would be glad to get some doubts clarified. As I understand function overloading means having multiple methods in the same class with same name ...
6
votes
4answers
237 views

how does overloading of const and non-const functions work?

The stl is full of definitions like this: iterator begin (); const_iterator begin () const; As return value does not participate in overloading resolution, the only difference here is the function ...
6
votes
3answers
388 views

Overload resolution with extern “C” linkage

In a mixed C/C++ project, we need to make a call from C to a C++ function. The function to be called is overloaded as three separate functions, but we can ignore that from the C-side, we just pick the ...
6
votes
6answers
312 views

Adding new functions to an interface

I need to create overloads for functions on an existing interface without affecting any components that currently implement or make use of the interface (ideally). I figure I have a couple of ...
5
votes
2answers
133 views

ANSI C and function overloading [closed]

Possible Duplicate: function overloading in C ANSI C doesn't permit function overloading (I don't sure about C99). for example: char max(char x, char y); short max(short x, short y); ...
5
votes
2answers
128 views

Template Specialization VS Function Overloading

A textbook I have notes that you can provide your own implementation for standard library functions like swap(x,y) via template specialization for function overloading. This would be useful for any ...
5
votes
1answer
91 views

C# Named parameters, Inheritance and overloading surprise

I was going through some presentation regarding C# 4.0 and in the end the presenter posted a quiz with the following code. using System; class Base {     public virtual void Foo(int x = 4, int y = ...
5
votes
2answers
235 views

Implicit conversions with std::function [closed]

Possible Duplicates: Why can't my C++ compiler deduce template argument for boost function? Isn't the template argument (the signature) of std::function part of its type? I have ...
5
votes
1answer
249 views

When the C++ standard provides C headers bringing names into the global namespace, does that include overloads?

The final committee draft of the upcoming C++0x standard says: Every C header, each of which has a name of the form name.h, behaves as if each name placed in the standard library namespace ...
4
votes
3answers
84 views

Polymorphic Callbacks in Emacs/Elisp

What's the idiomatic way to implement polymorphic callbacks in elisp? Specifically, suppose I have a minor mode with a function that performs a certain operation and then invokes another function. ...
4
votes
3answers
149 views

Passing type information to function in lieu of virtual template function C++

I have a base class which implements the following: struct Consumer { template <typename T> void callback(T msg) { /*null implementation */ } }; I then have a class implement this: ...
4
votes
4answers
268 views

Why overloading does not occur?

I have the following class: class CrmToRealTypeConverter : IConverter { #region IConverter Members public object Convert<T>(T obj) { return Convert(obj); } ...
4
votes
2answers
398 views

Does function overloading have runtime overhead in Delphi?

Is there any additional runtime overhead in calling overloaded functions? (I ask this specifically for Delphi, in case the answer isn't the same for all compiled languages) I think not as that ...
4
votes
1answer
304 views

Strange overloading rules in C++

I'm trying to compile this code with GCC 4.5.0: #include <algorithm> #include <vector> template <typename T> void sort(T, T) {} int main() { std::vector<int> v; ...
4
votes
4answers
384 views

How to provide stl like container with public const iterator and private non-const iterator?

I have a class that includes a std::list and wish to provide public begin() and end() for const_iterator and private begin() and end() for just plain iterator. However, the compiler is seeing the ...
4
votes
2answers
2k views

How to force template function overload for boost::bind?

I'm trying to create predicate for std::find_if by using boost::bind together with boost::contains (from boost/algoritm/string library). Following snippet shows two ways how I'm trying to accomplish ...
4
votes
3answers
634 views

How do I call the original function from the overloaded function in a category?

In Objective-C, I have a category for a class: @interface UILabel(CustomInit) - (id)initWithCoder:(NSCoder *)coder; @end What I'm doing is writing a custom init function that does some extra ...
4
votes
3answers
1k views

Is there a reason that C99 doesn't support function overloading?

Apparently (at least according to gcc -std=c99) C99 doesn't support function overloading. The reason for not supporting some new feature in C is usually backward compatibility, but in this case I ...
3
votes
2answers
49 views

Why is my overloaded template function is promoting to const differently then a non-template function.

I have a overloaded function that works correctly. (f in the example). When I convert it to a template version of the same thing, it breaks by always calling the T& version, never the T*. (t in ...
3
votes
3answers
76 views

How to determine which overloaded function is called?

#include <iostream> #include <cmath> using namespace std; float f (int a, int b) { return (a + b); } float f (float a, float b) { return (round(a + b)); } int main () { cout ...
3
votes
3answers
239 views

C++ Ambiguous call to overloaded function

I have the following code for a "safe" strncpy() -- basically it's wrapper automatically takes fixed array sizes for string buffers so you don't have to do the extra work to pass them in (and this ...
3
votes
4answers
118 views

How do I make a program using 3 overloaded functions (difference in parameters is int, long, float) meanwhile only asking one input entry?

I have to write a program where I put in two numbers and the program calculates the average. I want to write my program so that if I input two decimal numbers, the program will call the float ...
3
votes
1answer
105 views

Overloading of F# Measures

Consider the following F# code: [<Measure>] type pixel [<Measure>] type inch [<Measure>] type dot [<Measure>] type percentage let scaleCalculation ...
3
votes
8answers
586 views

Python function overloading

I know that Python does not support method overloading, but I've run into a problem that I can't seem to solve in a nice Pythonic way. I am making a game where a character needs to shoot a variety of ...
3
votes
2answers
125 views

Cannot Declare Child Class Method declared in Interface on Super Class

This should be a pretty straightforward classes and interfaces question, but please bear with me while I lay out my example. In the Propel ORM library, all the database tables are abstracted as ...
3
votes
1answer
259 views

c# overload generic functions with different parameter constraints

I have the following functions: public static V AddIfNotPresent<K, V>( this Dictionary<K, V> store, K key ) where V : new() public static V AddIfNotPresent<K, V>( this ...
3
votes
4answers
311 views

What does the C++ compiler do when coming ambiguous default parameters?

What does the C++ compiler do when coming ambiguous default parameters? For example, let's say there was a function such as: function1(int a = 0, float b = 3.1); function2(int a, float b =1.1, int c ...
3
votes
3answers
195 views

Variable argument function ambiguity

public static void main(String[] args) { System.out.println(fun(2,3,4)); } static int fun(int a,int b,int c) { return 1; } static int fun(int ... a) { return 0; ...
3
votes
2answers
220 views

Function overloading where parameters only differ by ellipses

I've got this logging system for which I'm looking to shortcut some of the string manipulation. The logging system is used via functional macros which then forward to a single function call. E.g. ...
3
votes
4answers
464 views

Why isn't the compiler smarter in this const function overloading problem?

The following code does not compile: #include <iostream> class Foo { std::string s; public: const std::string& GetString() const { return s; } std::string* GetString() { return ...
3
votes
2answers
411 views

c++ function overload resolution regarding templated type and class hierarchy [closed]

Possible Duplicate: Priority when choosing overloaded template functions in C++ A templated function gives me the convenience to operate on a variety of types: template<typename T> ...
2
votes
1answer
42 views

Calling overloaded function using templates (unresolved overloaded function type compiler error) [closed]

Possible Duplicate: How to get the address of an overloaded member function? I have a function overloaded for a set of types in a class inheritence heirarchy, e.g. Share with FutureShare ...
2
votes
1answer
85 views

Powershell: C#-style function overloads with Parameter Sets?

In C#, function overloading has historically appeared something like the following, where each overload adds some amount of parameters on top of the simpler signatures: public void Initialize(int ...
2
votes
1answer
91 views

C11 type-generic expressions - why not just add function overloading?

I was just reading the Wikipedia article on C11, the new version of the C standard released in Dec 2011, and I saw that one of the added features was "type-generic expressions": Type-generic ...
2
votes
4answers
164 views

How can I cleanly specify which arguments I am passing and which remain default?

Asked because of this: Default argument in c++ Say I have a function such as this: void f(int p1=1, int p2=2, int p3=3, int p4=4); And I want to call it using only some of the arguments - the rest ...
2
votes
5answers
96 views

Overload a pointer to an overloaded function

If I try to define a pointer to an overloaded function void myprint(int ); void myprint(const char* ); void (*funpointer)(int) = myprint; the compiler understands that funpointer should point to ...
2
votes
2answers
82 views

member function chosen over the function with the same name in the member function definition

Assume I have a function: template<class T> void save(aType var1, aType var2, T varT) // var1, var2 - do not matter { // ... } Now I have the class, which defines this function for ...

1 2