For issues relating to overloading functions or methods.
4
votes
4answers
70 views
function template overloading: const* vs. const&
When I have two templated function overloads like this:
template<class T>
void foo( T const& )
{
// do something with a const reference
cout << "const reference version";
}
...
1
vote
1answer
85 views
Exception being raised as I enter into function before code can be executed
As always, I'm probably missing something obvious here. I can't post the entire source code, because it's work-related but I have a templated Matrix class with a mulMM (multiply Matrix by Matrix) ...
2
votes
1answer
83 views
c++ operator overloaded argument vs normal argument
I have a function template (c++)
template<typename T>
void print_to_default_file(T &obj, ADDON addon = "")
and a overloaded function
template<typename T>
void ...
0
votes
0answers
49 views
VC++ compiler ignores an overloaded function
Here is my code (simplified):
//wrapper.h
#include <play3d.h>
class wrapper
{
private:
soundengine *soundEngine;
public:
sound *playSound3D(source *source, D3DXVECTOR3 pos, bool ...
0
votes
1answer
30 views
How to overload function in external node.js application?
I am new in node.js programming. I need to change behaviour of one function in existing node.js application (Haraka SMTP server).
What is the best practise for doing this? Should I use plugin or is ...
1
vote
1answer
49 views
Overload functions for different type arguments?
I'm thinking about overload functions, isn't it a faster way to perform, in example, addiction without define the function a lot of times with different arguments and outputs (int, float double ...
0
votes
1answer
51 views
overload class functions in c++?
I am trying to overload functions that are under a class but I will be passing different data types to the functions. The values passed to it can either be int or chardepending on the input. But I am ...
1
vote
7answers
181 views
Overloading the C++ assignment operator
I want to extend the std::string with some functionality, so I derive my String from it. In order to make code like String str = stdStr; work, I've tried to overload the assignment operator, but my ...
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
3answers
45 views
C++ wrapping overloaded functions
I want to create a wrap for a bunch of overloaded functions
void print(int i);
void print(long i);
void print(char* s);
...
void myPrint(int x, int y, ??? toPrint){
moveTo(x,y);
...
2
votes
1answer
94 views
Function overloading with shared pointer argument ambiguity
I want to make overloaded functions that take a shared pointer to a base class and derived classes. It seems to work for references and raw pointers, but not for shared pointers in the case of an ...
1
vote
1answer
73 views
C++11/templates: Select the correct overloading of a function
In relation with this question, that perhaps is too much oversimplified, I give here a more complex example. The problem that I pretend is depicted with the following code:
// test3.cpp
using ...
5
votes
1answer
224 views
1
vote
2answers
70 views
C++ const iterator in Vector
I am a newbie to C++. So, please bear with me. I was looking into the implementation of the std::vector class. I found the following 2 different implementation of the begin() method. I understand that ...
1
vote
6answers
103 views
Is it bad practise to implement multiple function calls?
Is it bad to do these things? :
"Is it bad to make functions only for calling other functions?"
void pyRunScript(&o_Log, &o_Dict, ModuleName, *pDictArgs = NULL)
{
pyRunScript(o_Log, ...
0
votes
1answer
63 views
overload std::find for custom classes
Well is it possible/"good" to overload std::find for custom classes in objects? And then without overloading the equality operators. Say a container stores (smart) pointers to it's actual data, I ...
0
votes
4answers
73 views
Operator Overloading ( = )
I'm just a beginner in the C++ language and I have some questions on this piece of code. I am trying to overload some operators.
string& operator = (char R) { string T = R ; *this = T; return ...
1
vote
3answers
69 views
problems with cmath overloaded functions C++
I need to use cmath's abs() function, but Visual Studio says it's overloaded and I can't even use something like this:
unsigned a = 5, b = 10, c;
c = abs(a-b);
I don't know how to use it properly.
...
-1
votes
2answers
77 views
How do I write overloaded functions in VB.NET that will all use the same core code?
I want to write two overloaded functions in VB.NET.
Most of the logic in the two functions will be the same so I don't want to just duplicate the entire function for the two overloads.
I could ...
0
votes
1answer
50 views
Does anyone know of a robust JavaScript pseudoclass class?
I'm looking for a relatively simple but efficient mechanism to implement clean looking:
public, private and protected members (with actual public/private/protected access, but still extensible)
...
5
votes
1answer
104 views
Will casting away the parameters on a function pointer with default value parameters work?
I'm trying to call an overloaded function which operates on function pointers that have parameters with default values.
void originalFunction1 (int a = 0) {printf("I'm #1 and a is %d",a);}
void ...
0
votes
1answer
44 views
Determine signatures of overloaded member functions
Given some_type with a member function f it is possible to determine f's signature like this (and say let us place it in a tuple):
template <typename R, typename T, typename... A>
...
2
votes
2answers
665 views
Ambiguous call to overloaded function - std::to_string [duplicate]
In attempting to insert integer values into a string, I thought that my prayers were answered when I found std::to_string, but for some reason whenever I actually try to use it, Visual Studio ...
2
votes
2answers
137 views
how to overload empty std::initializer_list?
Here I have series of overloaded functions that have as input either vector or initializer_list. And I want to handle the special case when client code inputs empty initializer_list. The problem is ...
0
votes
2answers
102 views
Unresolved overloaded type>[int] for array subscript c++
Aloha. As you can see from the title of the question, I'm getting the error message 'Unresolved overloaded type>[int] for array subscript' in my flight-booking-system program.
What I'm trying to do ...
5
votes
4answers
197 views
Scala: arrays and type erasure
I'd like to write overloaded functions as follows:
case class A[T](t: T)
def f[T](t: T) = println("normal type")
def f[T](a: A[T]) = println("A type")
And the result is as I expected:
...
1
vote
1answer
127 views
Generic algorithm for calling print on each element in the collection
When writing a template function like:
template<class T> void print(T const & collection)
When looping through the collection and dereferencing the iterator everything works right if you ...
1
vote
1answer
245 views
function overloading vs default argument in c++
Hi i have a confusion or to say more i need to understand something. I have a procedure and another overloaded procedure of same.
string conct (string a, string b) {
string str = conct(a, ...
0
votes
2answers
110 views
How to call same subroutine from Perl module in different ways? What is Perl Module “Default mode”?
I've written a perl module (say foo), with one primary subroutine (say f()), which I want to use in two ways:
Import module foo , then call the sub f(...) from the script importing module foo.
Just ...
5
votes
4answers
152 views
c++ issue with function overloading in an inherited class
This is possibly a noob question, sorry about that. I faced with a weird issue recently when trying to mess around with some high level stuff in c++, function overloading and inheritance.
I'll show a ...
2
votes
1answer
115 views
C++: overloading with 2 functions, one in the header file, one is not
Suppose I declared (in c++, VS 2010), in one of the header file a function named "void f(int x)", then implemented it on the respective cpp file.
While trying to add an overloading function (void ...
7
votes
3answers
365 views
Dynamic Dispatch without Visitor Pattern
Problem
I am working with an already existing library, to the source code of which I do not have access. This library represents an AST.
I want to copy parts of this AST, but rename references to ...
2
votes
3answers
79 views
Output only overloading c++ [duplicate]
Possible Duplicate:
Overloading by return type
Is it possible to overload only the output of a function. Say for example i have a function that can return a pose in two different ways. A ...
0
votes
2answers
75 views
c++ function overloading, expression templates and namespace
I'm developing an automatic differentiation tool based on expression templates and operator/function overloading. The template std::max function, for example, was successfully overloaded:
namespace ...
2
votes
1answer
311 views
no matching function for call to for_each
here is the code:
#include <vector>
#include <algorithm>
#include <string>
#include <map>
#include <iostream>
using namespace std;
map<string, int> g_map;
void ...
0
votes
2answers
128 views
Function overloading and virtual method table [duplicate]
Possible Duplicate:
What is the slicing problem in C++?
I've got a simple code as a example of polymorphism and inheritance
class A
{
public:
int fieldInA;
void virtual ...
2
votes
2answers
166 views
How can I overload simple Delphi Functions of Integers?
Using Delphi 7, I have several functions that take a single integer parameter. These functions operate on a Text string belonging to the object. The only parameter is either a character index in the ...
0
votes
2answers
81 views
function overloading class design
My program has a Car and CarManager class that looks similar to the following:
#include <list>
class Car
{
public:
void Draw() { Draw(m_opacity); }
void Draw(float opacity)
{
}
...
3
votes
2answers
2k views
TypeScript function overloading
Section 6.3 of the TypeScript language spec talks about function overloading and gives concrete examples on how to implement this. However if I try something like this:
export class LayerFactory {
...
0
votes
3answers
58 views
Oveloaded function static method error
I was going through an example which is below
class Program
{
public static void Show(String pstrMessage)
{
Console.WriteLine(pstrMessage);
}
public void Show(Object obj)
...
4
votes
2answers
67 views
Overwrite toString for specific function
Look edits below!
I am currently looking for a way to overload the toString method of one specific function that is generated dynamically (returned by function). I know I can overload the toString ...
1
vote
2answers
72 views
Java ternary operator function overloading [duplicate]
Possible Duplicate:
Java conditional operator ?: result type
NullPointerException through auto-boxing-behavior of Java ternary operator
Say I have two functions:
f(MyObject o) { ... }
...
3
votes
1answer
96 views
function overloading with const parameters
Function overloading can happen between two member functions which have the same number of parameters, if one of them is declared as const.
But what if one function has a const argument, another has ...
0
votes
2answers
128 views
Overloaded Sum Function, Confusing List/Vector with Map
I'm still working on overloading a Sum function that can work with either vectors/lists or maps. My vector/list version of the sum function works fine, and I think my code for the map version is ...
0
votes
3answers
286 views
Function Overloading, Could Not Deduce Template Argument
I'm trying to overload a Sum function which accepts a [list or vector] start and end iterator as arguments. This compiler error is really confusing me. Relevant code is as follows:
template ...
4
votes
1answer
331 views
How does Delphi resolve overloaded functions with Pointer(typeless one) parameters?
Below are few overloaded functions.
Try to guess which function of those would get called.
program Project2;
{$APPTYPE CONSOLE}
uses
Types, SysUtils;
procedure Some(const Buf); overload;
...
3
votes
1answer
96 views
Workaround for VS2010: templates and overloaded functions
I've code that are perfect build with mingw/g++ compilers but MSVC (2010) encountered error. Problem is overloaded functions and templates. May be somebody know workaround for MSVC? If workaround not ...
15
votes
3answers
319 views
Are extern “C” functions a separate type?
From the C++11 draft, 7.5 (para. 1):
Two function types with different language
linkages are distinct types even if they are otherwise identical.
So I can do overload based on language ...
-1
votes
3answers
83 views
Relation between Overloading and Object Orientation [closed]
Is there a relation between function overloading and object orientation in C++?
And if yes, Then what is that relation?
4
votes
5answers
281 views
function overloading vs function templates - C++
Why we even use/read(in books) function overloading if we have such a nice concept of templates at our disposal ?
Wouldn't it be better to put templates in the place where most c++ books introduces ...


