The terms overloading and overloaded may refer to: - Constructor and method overloading, a type of polymorphism where different functions with the same name are invoked based on the data types of the parameters passed - Operator overloading, a form of functional or method overloading where ...

learn more… | top users | synonyms (1)

0
votes
0answers
11 views

LWJGL starts to run low FPS on Display

I'm having this problem with LWJGL. I have a simple game and all works fine. My main loop is calculating when it should render and update my game. It stays constant 59-60 fps. The problem comes in ...
1
vote
1answer
73 views

Can someone correct what I did wrong with my overloading function?

I am not very familiar with the use of template and overloading, and I was asked to correct a code as a practice exercise. I corrected all that I can manage to identify, but I am not sure what did I ...
0
votes
1answer
43 views

redifining operators for iterator class c

I faced a problem of overloading the ->() operator while implementing the Iterator class. How should this operator be overloaded? class iterator { private: pair<Key_t, Val_t> p; public: ...
0
votes
3answers
50 views

Operator- overloading (same parameters, different return type)

How do I overload the minus operator accepting the same number of parameters, but having different return types? Template class: template <typename T> T minus (T x, T y) { return (x - y); ...
-2
votes
1answer
16 views

JAVA static variables ,overriding and overloading [closed]

Why do we use overloading and overriding? Why do we use static variables? In java
0
votes
1answer
54 views

The call is ambiguous between the following methods or properties - overloads with string and byte[] inputs

Adding this for posterity since I couldn't find anything specific in my Googling endevors. Problem: The call is ambiguous between the following methods or properties: ...
0
votes
2answers
23 views

add new string object method

I have this codeline: newUrl = Request.RawUrl.ToString.Replace(Server.UrlEncode(category), "") When category="" I get the error: String cannot be of zero length. Parameter name: oldValue So I ...
2
votes
2answers
50 views

Operator overloading of “basic” classes

Hello I want to multiply a matrix by a number at left, something like : N=a*M where a is a number. If i wanted to multiply at right i would have simply overloaded the operator * in my matrix class. ...
0
votes
3answers
52 views

overloading operators, what is the purpose of the overladed operator in this example

I have been trying to understand the use of the overloaded operator in this code, however, I cannot wrap my mind around it. I do not understand exactly the purpose of the overloaded operator or why it ...
1
vote
1answer
42 views

Confused about virtual overloaded functions

I am confused about compiler errors regarding the code below: class Base { public: virtual ~Base () { } virtual void func () { } virtual void func (int) { } virtual void another () { } ...
10
votes
2answers
170 views

How to overload constructors on signature of a std::function?

I'm trying to write a class with overloaded constructors that accept std::function objects as parameters, but of course every damn thing can be implicitly cast to a std::function of any signature. ...
12
votes
3answers
74 views

Templated operator instantiation and type conversion

This if for the C++ gurus out there. Consider the following code: class X { }; template <class T> class Mistake { public: T x; Mistake(const T& k) : x(k) { } Mistake(const X&) ...
0
votes
0answers
14 views

Overloading operator[] to work with c strings

I'm trying to overload the operator [] to work with c strings but it doesn't want to work. Object* operator[](char *name) { return data->objectForKey(name); } Sample["ObjectName"]; and it ...
1
vote
3answers
78 views

How to overload operator+

So I want to overload operator+. Here is what I have so far, but it's still not working. How would I go in writing the syntax? Header file: private: int month; int year; int ...
1
vote
3answers
66 views

Operator Overloading c++ adding int to object

I'm just getting started with operator overloading and trying to understand the concept. So I want to overload the operator +. In my header file I have public: upDate(); upDate(int M, int ...
1
vote
0answers
62 views

c# method overloading and optional parameters [duplicate]

Say I have these 2 functions: public void Test(int Param1) { //do something } public void Test(int Param1, int Param2 = 1) { //do something } If I execute ...
-1
votes
3answers
46 views

c++: No instance of overloaded function

highInterestChecking Header: #ifndef H_highInterestChecking #define H_highInterestChecking #include "noservicechargechecking.h" #include <string> class highInterestChecking: public ...
0
votes
1answer
37 views

Twig path-based overloading

This is a bit complicated to explain. My use-case is as follows: Let's say I have the following filesystem structure: /client/name/web/dashboard.twig <- extends dashboard.twig - file might not ...
0
votes
2answers
14 views

How to overload magento CartController

Im trying to overload my CartCotroller so create folder structure like my CartController in the local: app/code/local/Mage/Checkout/controllers/CartController.php My question is, does magento ...
0
votes
0answers
14 views

Getting ifstream from istream and calling functions via overloaded >> operator

I've created an object, PDBParser, to extract information from a PDB file. Now I am trying to overload the >> and << operators so that I can use them from the main as so: inFile >> ...
1
vote
1answer
47 views

matrix class C++ as matlab operator overload

I have a class that defines a matrix of dimensions mxn like this: class Matrix{ protected: int m; int n; double* mat: public: // accessors, constructors, destructors, etc. void ...
1
vote
1answer
59 views

Assignment operator overload not getting called

I have two classes, Database and Record. class Database { private: Record* head; public: Database(Record*); Database(); Database(const Database&); ...
0
votes
1answer
52 views

overloading operator<< operator== and operator!=

Homework assignment Have to overload both the operator<<, operator== and operator!= .h file and .cpp file is included below: namespace JoePitz { class Complex { // declare friend ...
5
votes
1answer
63 views

Java method overload - ambiguity

While I was doing some runs to test some code in this thread I found out a strange thing, If you consider the following program import java.util.ArrayList; import java.util.List; public class ...
1
vote
2answers
75 views

What operator to overload if i want to use “ a = {x, y};”

I'm making my own class and i'd like to be able to initilize it like the title. a = {x, y}; I haven't been able to find anything to point me how to do that.
0
votes
1answer
57 views

C++ Vector of Subclasses, using it to overload the istream/ostream

I'm looking to hold a Vector of Objects, of which will be Subclasses. I thought I would be able to do it by declaring a Vector of Pointers to the Baseclass (Such as vector<BaseClass*> db), and ...
0
votes
1answer
121 views

Undefined number of arguments in C++ [duplicate]

Can i overload my function to do something with a lot of arguments as in JavaScript. For example: function f() { alert(arguments[0]); } f(4); // will alert 4 Can i do the same thing in cpp ?
3
votes
2answers
151 views

What overloaded C++ function will be called? [duplicate]

Here is the subject of the topic: #include <string> #include <iostream> void test(bool val) { std::cout << "bool" << std::endl; } void test(std::string val) { ...
11
votes
3answers
93 views

C# Overloaded method invocation with Inheritance [duplicate]

I wonder what is the reason for the invocation of the method that prints "double in derived". I didn't find any clue for it in the C# specification. public class A { public virtual void Print(int ...
3
votes
2answers
62 views

The most 'Pythonic' way to handle overloading

Disclaimer: this is perhaps a quite subjective question with no 'right' answer but I'd appreciate any feedback on best-practices and program design. So here goes: I am writing a library where text ...
0
votes
4answers
45 views

Template Specialization or Function Overloading

I know there are other questions like this but they are not very clear. Now I feel as though this is a stupid question because I'm sure I already have the answer but let me ask anyways. So I ...
4
votes
1answer
66 views

Overload stringification and the utf8 flag

There is something I don't understand about overloading stringification and how it interacts with the utf8 flag. For example the following code prints: n is utf8 at ./test_stringify_utf8.pl line 46. ...
4
votes
2answers
94 views

New to c++ and Overloading operators, unsure how to use the function

Hi I am rather new to C++, I have just started learning it after learning some Java basics. I have pre-existing code were it has overloaded the >> operator, however after watching many ...
4
votes
1answer
132 views

How are `std::initializer_list` values passed by the compiler? (Or: how can I get around a universal overload with one?)

Continuing my saga, I've realized that I can make overloads of my access functions, using a single std::initializer_list parameter instead: class array_md { //... my_type & ...
0
votes
2answers
31 views

Can we overload malloc()?

i went through overloading new and delete, I was reading in a book that the difference between new and malloc is that new call the constructor,returns the type of calling variable and the third ...
0
votes
2answers
35 views

Friend functions and their relationship to the I/O Operators

I've pored over information regarding friend functions and their use. They're able to access encapsulated data within a class while not breaking one of the golden rules of OOP. In purveying various ...
1
vote
1answer
28 views

How do I overload notation without getting warnings and not using type classes?

First, without knowing much about type classes, it appears that type classes are the best way to overload notation for a type, unless I can't use type classes, or haven't figured out how. I'm not ...
0
votes
1answer
38 views

classes having destructor and new operator.‏

I overloaded the new operator with the following code fr it. void* operator new(size_t size) { cout<<"size=>"<<size<<endl; return malloc(size); } Now, I tried to ...
3
votes
1answer
58 views

Behavior of method overloading with varargs

I have two overloaded methods with varargs int and long. When I run a test passing integer it seems to prefer the varargs long method. Whereas, if I make the methods static and run with an integer it ...
-2
votes
2answers
84 views

any working operator overloading example in haskell

I want to overload any operator . i want to do such a simple function that for instance think about overloading of == operator .Overload == such that x==y returns x . Or x==y return x+y. It doesn't ...
0
votes
2answers
45 views

Call base class method when derived class overloads it

I have the following: class A(object): def x(self): print "Hello" def y(self): self.x() class Abis(A): def x(self): print "Bye" a = Abis() a.x() a.y() Which prints: Bye Bye But I ...
-2
votes
0answers
54 views

Operator overloading in C++ with an Array wrapper [closed]

I have to write an Array wrapper class as part of an assignment. Are all my prototypes and method signatures correct? The code compiles and looks good to me, but I'm not sure if there is anything I ...
0
votes
1answer
68 views

operator[] overloading C++

So, I have to write two versions of the bracket operator for a class that I am writing. Details: The class has a private variable that is an array of strings. The versions of operator[] differ in ...
-1
votes
0answers
54 views

Overload already overloaded operator in C# (Point) [closed]

I'm currently working with C# and I woudl like to be able to do simple math operations on Point objects. By default, the + and - operator are already overloaded as : Vector = Point +/- Point. I just ...
-1
votes
3answers
73 views

C++ overloading operators

I'm stuck with overloading operators "+", "-", "/" and "*" in my program. Basically I've got an object, which is dynamically allocated array of double values. I've got the whole program, but I can't ...
0
votes
2answers
28 views

Confused about __get and __set in MVC framework design

I've been reading up on how exactly MVC frameworks work and the design pattern itself. I can understand most parts and see how it all fits together, but on a lot of examples I've seen something like ...
2
votes
3answers
115 views

Haskell: overloading == for graph ADT

I have a declaration of graph for which I need to overload "==" operator in Haskell (problem from the book). data Node a = Node { label :: a, adjacent :: [(a,Int)] } deriving Show data Network a = ...
1
vote
4answers
48 views

method overloading error in java

Hello I am building an book store and I receive this error message Duplicate method getApparel(String) in type Bookstore Apparel is a class in these methods. How I fix this. Eclipse suggest to ...
0
votes
1answer
34 views

Force-call a specific constructor in a parent's class

I'm facing for the first time the following case: I have the following java class: public class Values extends ArrayList<Object>{ public Values() { } public Values(Object... ...
0
votes
1answer
56 views

Python: Manipulating objects using operator overloading

I am trying to create a class which contains two floats; One data point and one error associated with that data point. Here is my class definition: class DataPoint: def __init__(self, Datum, Error, ...

1 2 3 4 5 28