Top "Overloading" questions

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 the action being overloaded is an operator, such as + or -

Javascript "abstract method"

My terminology is a bit off, so feel free to correct where necessary. I want to overload a function in …

javascript jquery oop overloading object-literal
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 …

c++ class inheritance overloading
How to overload Python's __bool__ method?

Possible Duplicate: defining “boolness” of a class in python I thought this should print "False", why is it printing "True"? &…

python methods overloading magic-methods
Swift Overload init()

i will overload the init Method in Swift how i can implement that? here my code that not work code …

xcode swift overloading init
Functions with generic parameter types

I am trying to figure out how to define a function that works on multiple types of parameters (e.g. …

generics f# overloading type-inference typeclass
Overload of pure virtual function

I usually use pure virtual functions for those methods that are required by my code to work well. Therefore, I …

c++ oop design-patterns overloading pure-virtual
How to overload constructors in JavaScript ECMA6?

Objective Implement a mechanism to allow constructor overload in JavaScript ECMA6 Why this is not a duplicate The topic Why …

javascript constructor ecmascript-6 overloading constructor-overloading
C++ overload operator [ ][ ]

I have class CMatrix, where is "double pointer" to array of values. class CMatrix { public: int rows, cols; int **arr; }; …

c++ matrix overloading operator-keyword
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) …

c++ stl template-specialization standard-library overloading
LD_PRELOAD equivalent for Windows to preload shared libraries

I'm trying to do exactly what LD_PRELOAD does, i.e. preload a shared library or DLL files on Windows …

shared-libraries overloading inter-process-communicat