0
votes
2answers
43 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
87 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
43 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
89 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
86 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 …
3
votes
5answers
192 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 …
1
vote
4answers
39 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
112 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
115 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 …
1
vote
3answers
82 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& …
1
vote
2answers
79 views
Using all overloads of the base class
When a subclass overrides a baseclass's method, all of the baseclass's overloads are not available from the subclass. In order to use them there should be added a using BaseClass:: …
6
votes
5answers
171 views
Differences between template specialization and overloading for functions?
So, I know that there is a difference between these two tidbits of code:
template <typename T>
T inc(const T& t)
{
return t + 1;
}
template <>
int inc(const i …
3
votes
6answers
65 views
Should I duplicate tests for convenience overloads?
It's really common for me to make convenience overloads for methods. Here's an example of something I might do:
public void Encode(string value) {
Encode(value, DefaultEncodi …
2
votes
3answers
195 views
Can I overload Perl’s =? (And a problem while use Tie)
I choose to use tie and find this:
package Galaxy::IO::INI;
sub new {
my $invocant = shift;
my $class = ref($invocant) || $invocant;
my $self = {']' => []}; # ini s …
17
votes
17answers
865 views
Any reason to overload global new and delete?
Unless you're programming parts of an OS or an embedded system are there any reasons to do so? I can imagine that for some particular classes that are created and destroyed frequen …
