4
votes
2answers
155 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 …
3
votes
4answers
67 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
112 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 …
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
4answers
157 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
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
104 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 …
0
votes
2answers
44 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 …
2
votes
6answers
132 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 …
1
vote
3answers
47 views
“Overloading” standard GORM CRUD methods
Wanna do the following:
BootStrap {
def init = {servletContext ->
........
MyDomainClass.metaClass.save = {->
delegate.extraSave()
//////// how to call original …
3
votes
5answers
210 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 …
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
}
4
votes
7answers
124 views
When does it make more sense to use the factory pattern rather than an overloaded constructor to instantiate an object?
In Karl Seguin's Foundations of Programming there is a small section on using the factory pattern. He closes the passage by stating "you can accomplish the same functionality with …
1
vote
4answers
149 views
Difference between variable-length argument and function overloading
This C++ question seems to be pretty basic and general but still I want someone to answer.
1) What is the difference between a function with variable-length argument and an overlo …
