0
votes
2answers
47 views
Overloading Default Construction with Initializer List
I need to know how to get something to work. I've got a class with a constructor and some constants initialized in the initializer list. What I want is to be able to create a diffe …
3
votes
4answers
77 views
Visual Studio Intellisense not showing methods on generic overload
Given the following two interfaces (these are small examples, not my actual implementation):
public interface IAssertion<T> {
IAssertion<T> IsNotNull();
IAss …
1
vote
6answers
117 views
Is it common (or encouraged) practice to overload a function to accept IEnumerable<T>, ICollection<T>, IList<T>, etc.?
EDIT:
From the answers given, it's been made rather clear to me how the design I'm asking about below should actually be implemented. With those suggestions in mind (and in respon …
4
votes
2answers
170 views
Delphi/pascal: overloading a constructor with a different prototype
I'm trying to create a child class of TForm with
a special constructor for certain cases, and
a default constructor that will maintain compatibility with current code.
This i …
1
vote
1answer
23 views
Overloaded signification on msdn
I don't understand what does the overloaded term mean in the context of msdn library's page for MemoryStream Close method (or others like Dispose).
See the page here.
To me, overl …
0
votes
5answers
61 views
what is operation overloading? [closed]
Assuming I have a function that compares to of my objects: obj1, and obj2. This function returns 0 if obj1 and obj2 are equal then it is called operation overloading
0
votes
4answers
165 views
Overloading *(iterator + n) and *(n + iterator) in a C++ iterator class?
(Note: I'm writing this project for learning only; comments about it being redundant are... uh, redundant. ;)
I'm trying to implement a random access iterator, but I've found very …
0
votes
2answers
47 views
C# Custom Events with Overloads
So I have a custom event like this:
Work w = new worker()
w.newStatus += new worker.status(addStatus);
w.doWork();
void addStatus(string status)
{
Messag …
0
votes
4answers
116 views
Overloading operator>> to a char buffer in C++ - can I tell the stream length?
I'm on a custom C++ crash course. I've known the basics for many years, but I'm currently trying to refresh my memory and learn more. To that end, as my second task (after writing …
1
vote
3answers
51 views
“Overloading” standard GORM CRUD methods
Wanna do the following:
BootStrap {
def init = {servletContext ->
........
MyDomainClass.metaClass.save = {->
delegate.extraSave()
//////// how to call original …
2
votes
6answers
143 views
Function/Method Overloading C++: Data type confusion?
Hi,
I'm having some trouble overloading methods in C++.
As an example of the problem, I have a class with a number of methods being overloaded, and each method having one parameter …
0
votes
3answers
87 views
printing using one ‘\n’
I am pretty sure all of you are familiar with the concept of the Big4, and I have several stuffs to do print in each of the constructor, assignment, destructor, and copy constructo …
1
vote
4answers
45 views
Overloading of GetEnumerator
Can't i overload GetEnumerator () like
IEnumerator<T> IEnumerable<T>.GetEnumerator<T> ( T[] val1,T[] val2)
{
.... some code
}
3
votes
5answers
216 views
Why is method overloading not defined for different return types?
In Scala, you can overload a method by having methods that share a common name, but which either have different arities or different parameter types. I was wondering why this was …
2
votes
3answers
95 views
Why is the compiler not selecting my template-function overload in the following example?
Given the following function templates:
#include <vector>
#include <utility>
struct Base { };
struct Derived : Base { };
// #1
template <typename T1, typename T2& …
