active questions tagged overload - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T05:45:22Zhttp://stackoverflow.com/feeds/tag/overloadhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1887771/finding-and-invoking-a-generic-overloaded-method1Finding and invoking a generic overloaded methodchase2009-12-11T12:29:31Z2009-12-13T10:49:43Z
<p>How can I find a generic overloaded method? For example, <code>Queryable</code>'s</p>
<pre><code>public static IQueryable<TResult> Select<TSource , TResult> ( this IQueryable<TSource> source , Expression<Func<TSource , int , TResult>> selector );
</code></pre>
<p>I've looked for existing solutions, and they're either not generic enough (are based on the method's parameters count, etc.), need more parameters than I have (require generic type definitions or arguments), or just plain wrong (don't account for nested generics, etc.)</p>
<p>I have the defining class type — <code>Type type</code>, the method name — <code>string name</code> and the array of the parameter types (not the generic definitions) — <code>Type[] types</code>.</p>
<p>So far it seems I have to map each of prospective method's <code>.GetGenericArguments()</code> to a specific type by comparing the (generic type tree?) of the method's <code>.GetParameters ().Select (p=>p.ParameterType)</code> with the corresponding item in the <code>types</code> array, thus deducing the generic arguments of the method, so I can <code>.MakeGenericMethod</code> it.</p>
<p>This seems a bit too complicated for the task, so maybe I'm overthinking the whole thing.</p>
<p>Any help?</p>
http://stackoverflow.com/questions/614790/jar-multiple-download2JAR multiple downloadmichelemarcon2009-03-05T13:42:25Z2009-11-29T11:03:35Z
<p>I have this code on an applet. The applet works ok, but I get a lot of unnecessary duplicate download. In particular, I have noticed that each "getResource" triggers a download of the .JAR file.</p>
<pre><code>static {
ac = new ImageIcon(MyClass.class.getResource("images/ac.png")).getImage();
dc = new ImageIcon(MyClass.class.getResource("images/dc.png")).getImage();
</code></pre>
<p>//...other images
}</p>
<p>How can this be avoided?</p>
http://stackoverflow.com/questions/1800136/how-can-i-call-methods-on-perl-scalars4How can I call methods on Perl scalars?Geo2009-11-25T21:37:37Z2009-11-26T12:10:47Z
<p>I saw some code that called methods on scalars (numbers), something like:</p>
<pre><code>print 42->is_odd
</code></pre>
<p>What do you have to overload so that you can achieve this sort of "functionality" in your code?</p>
http://stackoverflow.com/questions/1696314/java-different-return-types-when-overloading1java: different return types when overloadingpsergiu2009-11-08T12:53:34Z2009-11-20T02:59:59Z
<p>Hi,</p>
<p>I have a class tree like this: </p>
<pre><code>master class abstract class Cell
AvCell extends Cell
FCell extends Cell
</code></pre>
<p>i have an abstract method <code>getValue()</code> in <code>Cell</code></p>
<p>Is it posibble to make the method <code>getValue()</code> to return <code>int</code> for <code>AvCell</code> and <code>String</code> for <code>FCell</code>?
Can i use generics for <code>int</code> <code>String</code>?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1732786/overloaded-signification-on-msdn1Overloaded signification on msdnStringer Bell2009-11-14T00:38:39Z2009-11-14T00:58:40Z
<p>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).</p>
<p>See the page <a href="http://msdn.microsoft.com/en-us/library/system.io.memorystream%5Fmethods.aspx" rel="nofollow">here</a>.
To me, overloaded points out the fact that you are providing a method with the same name but different signature than an existing one AND in the <em>same class</em>.</p>
<p>In this case, there's no existing Close method. Shouldn't it be override instead? Thanks!</p>
http://stackoverflow.com/questions/1709478/overloading-iterator-n-and-n-iterator-in-a-c-iterator-class0Overloading *(iterator + n) and *(n + iterator) in a C++ iterator class?exscape2009-11-10T16:56:30Z2009-11-10T19:43:32Z
<p>(Note: I'm writing this project for learning only; comments about it being redundant are... uh, redundant. ;)</p>
<p>I'm trying to implement a random access iterator, but I've found very little literature on the subject, so I'm going by trial and error combined with Wikpedias list of operator overload prototypes.
It's worked well enough so far, but I've hit a snag.</p>
<p>Code such as</p>
<pre><code>exscape::string::iterator i = string_instance.begin();
std::cout << *i << std::endl;
</code></pre>
<p>works, and prints the first character of the string. However, *(i + 1) doesn't work, and neither does *(1 + i).
My full implementation would obviously be a bit too much, but here's the gist of it:</p>
<pre><code>namespace exscape {
class string {
friend class iterator;
...
public:
class iterator : public std::iterator<std::random_access_iterator_tag, char> {
...
char &operator*(void) {
return *p; // After some bounds checking
}
char *operator->(void) {
return p;
}
char &operator[](const int offset) {
return *(p + offset); // After some bounds checking
}
iterator &operator+=(const int offset) {
p += offset;
return *this;
}
const iterator operator+(const int offset) {
iterator out (*this);
out += offset;
return out;
}
};
};
}
int main() {
exscape::string s = "ABCDEF";
exscape::string::iterator i = s.begin();
std::cout << *(i + 2) << std::endl;
}
</code></pre>
<p>The above fails with (line 632 is, of course, the *(i + 2) line):</p>
<p>string.cpp: In function ‘int main()’:
string.cpp:632: error: no match for ‘operator*’ in ‘*exscape::string::iterator::operator+(int)(2)’
string.cpp:105: note: candidates are: char& exscape::string::iterator::operator*() </p>
<p>*(2 + i) fails with:</p>
<p>string.cpp: In function ‘int main()’:
string.cpp:632: error: no match for ‘operator+’ in ‘2 + i’
string.cpp:434: note: candidates are: exscape::string exscape::operator+(const char*, const exscape::string&)</p>
<p>My guess is that I need to do some more overloading, but I'm not sure what operator I'm missing.</p>
http://stackoverflow.com/questions/1686385/overloading-operator-to-a-char-buffer-in-c-can-i-tell-the-stream-length0Overloading operator>> to a char buffer in C++ - can I tell the stream length?exscape2009-11-06T09:12:55Z2009-11-06T11:30:11Z
<p>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 a stack class based on linked lists), I'm writing my own string class.</p>
<p>It's gone pretty smoothly until now; I want to overload operator>> that I can do stuff like cin >> my_string;.
The problem is that I don't know how to read the istream properly (or perhaps the problem is that I don't know streams...). I tried a while (!stream.eof()) loop that .read()s 128 bytes at a time, but as one might expect, it stops only on EOF. I want it to read to a newline, like you get with cin >> to a std::string.</p>
<p>My string class has an alloc(size_t new_size) function that (re)allocates memory, and an append(const char *) function that does that part, but I obviously need to know the amount of memory to allocate before I can write to the buffer.</p>
<p>Any advice on how to implement this? I tried getting the istream length with seekg() and tellg(), to no avail (it returns -1), and as I said looping until EOF (doesn't stop reading at a newline) reading one chunk at a time.</p>
http://stackoverflow.com/questions/1658821/c-operator-syntax0C++ operator[] syntax.Lanissum2009-11-01T23:50:31Z2009-11-02T00:28:06Z
<p>Just a quick syntax question. I'm writing a map class (for school).</p>
<p>If I define the following operator overload:</p>
<pre><code>template<typename Key, typename Val> class Map {...
Val* operator[](Key k);
</code></pre>
<p>What happens when a user writes:</p>
<pre><code>Map<int,int> myMap;
map[10] = 3;
</code></pre>
<p>Doing something like that will only overwrite a temporary copy of the [null] pointer at Key k. Is it even possible to do:</p>
<pre><code>map[10] = 3;
printf("%i\n", map[10]);
</code></pre>
<p>with the same operator overload?</p>
http://stackoverflow.com/questions/1640986/access-to-perls-empty-angle-operator-from-an-actual-filehandle3Access to Perl's empty angle "<>" operator from an actual filehandle?Ryan Thompson2009-10-29T00:29:16Z2009-10-29T18:26:10Z
<p>I like to use the nifty perl feature where reading from the empty angle operator <code><></code> magically gives your program UNIX filter semantics, but I'd like to be able to access this feature through an actual filehandle (or <a href="http://search.cpan.org/search?query=IO%3A%3AHandle" rel="nofollow">IO::Handle</a> object, or similar), so that I can do things like pass it into subroutines and such. Is there any way to do this?</p>
<p>This question is particularly hard to google, because searching for "angle operator" and "filehandle" just tells me how to read from filehandles using the angle operator.</p>
http://stackoverflow.com/questions/1624663/overloading-array-insertion0Overloading array insertion?conciliator2009-10-26T13:03:24Z2009-10-26T13:43:36Z
<p>I'm processing a XML with minOccurs and maxOccurs set frequently to either 0, 1, or unbounded. I have a schema describing this cardinality, together with the specific data type. I'd like to construct a (Delphi) class which keeps track of the cardinality, together with an array whose dimensions are to be validated based on the minOccurs and maxOccur fields. I believe using variants is a poor design choice, as I'll be fully aware of the data type before it's read (based on the XML schema rules).</p>
<p>I'm rather new to OOP in general, and Delphi OOP in particular, so what's my best options here? I've dreamt up something like:</p>
<pre><code>TComplexType = class(TObject)
FMinOccurs: integer;
FMaxOccurs: integer;
FValue: Array of Variant;
public
constructor Create(Min: integer; Max: integer);
procedure AddValue(Value: variant);
function Validate() : boolean;
end;
</code></pre>
<p>Of course, FValue may end up being a string, an integer, a double, etc. Thus, I believe I need to specialize:</p>
<pre><code>TComplexString = class(TComplexType)
FValue: Array of string;
end;
</code></pre>
<p>Now, is the right way to go? Do I have to overload AddValue(Value: SomeType) in all the different classes (each class corresponding to a data type)? That doesn't seem very slick, as I'll be doing pretty much the same thing in every AddValue-method:</p>
<pre><code>procedure AddValue(Value: SomeType);
begin;
// 1) Re-shape array
// 2) Add Value as the last (newly created) element in the array
end;
</code></pre>
<p>I'd really hate to do this for every type. (Admittedly, there won't be that many types, but I still consider it flawed design, as the logical content is pretty much identical in the overloaded methods.) Any good tips out there? Thanks! </p>
http://stackoverflow.com/questions/1601365/java-overload-method-with-inherited-interface1Java Overload method with inherited interfacepaul.fariello2009-10-21T14:51:36Z2009-10-21T16:00:40Z
<p>Hi all,</p>
<p>i'm trying to understand java behaviour. Using this interfaces :</p>
<pre><code>public interface IA {}
public interface IB extends IA {}
public class myClass implements IB {}
</code></pre>
<p>I'm overloading a method like this : </p>
<pre><code>public void method(IA a);
public void method(IB b);
</code></pre>
<p>When calling method with the following object :</p>
<pre><code>IA a = new myClass();
method(a);
</code></pre>
<p>Why does java use : </p>
<pre><code> public void method(IA a);
</code></pre>
<p>instead of</p>
<pre><code>public void method(IB b);
</code></pre>
<p>?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1557244/abusing-the-comma-operator-in-c4Abusing the comma operator in C++miked2009-10-12T22:16:34Z2009-10-12T23:24:16Z
<p>I'm looking for an easy way to build an array of strings at compile time. For a test, I put together a class named <code>Strings</code> that has the following members:</p>
<pre><code>Strings();
Strings(const Strings& that);
Strings(const char* s1);
Strings& operator=(const char* s1);
Strings& operator,(const char* s2);
</code></pre>
<p>Using this, I can successfully compile code like this:</p>
<pre><code>Strings s;
s="Hello","World!";
</code></pre>
<p>The <code>s="Hello"</code> part invokes the <code>operator=</code> which returns a <code>Strings&</code> and then the <code>operator,</code> get called for <code>"World!"</code>.</p>
<p>What I can't get to work (in MSVC, haven't tried any other compilers yet) is </p>
<pre><code>Strings s="Hello","World!";
</code></pre>
<p>I'd assume here that <code>Strings s="Hello"</code> would call the copy constructor and then everything would behave the same as the first example. But I get the error: <code>error C2059: syntax error : 'string'</code></p>
<p>However, this works fine:</p>
<pre><code>Strings s="Hello";
</code></pre>
<p>so I know that the copy constructor does at least work for one string. Any ideas? I'd really like to have the second method work just to make the code a little cleaner.</p>
http://stackoverflow.com/questions/1484641/c-override-overload-problem4C++ override/overload problemfedj2009-09-27T22:24:21Z2009-09-27T22:41:17Z
<p>I'm facing a problem in C++ :</p>
<pre><code>#include <iostream>
class A
{
protected:
void some_func(const unsigned int& param1)
{
std::cout << "A::some_func(" << param1 << ")" << std::endl;
}
public:
virtual ~A() {}
virtual void some_func(const unsigned int& param1, const char*)
{
some_func(param1);
}
};
class B : public A
{
public:
virtual ~B() {}
virtual void some_func(const unsigned int& param1, const char*)
{
some_func(param1);
}
};
int main(int, char**)
{
A* t = new B();
t->some_func(21, "some char*");
return 0;
}
</code></pre>
<p>I'm using g++ 4.0.1 and the compilation error :</p>
<pre><code>$ g++ -W -Wall -Werror test.cc
test.cc: In member function ‘virtual void B::some_func(const unsigned int&, const char*)’:
test.cc:24: error: no matching function for call to ‘B::some_func(const unsigned int&)’
test.cc:22: note: candidates are: virtual void B::some_func(const unsigned int&, const char*)
</code></pre>
<p>Why do I must specify that the call of some_func(param1) in class B is A::some_func(param1) ? Is it a g++ bug or a random message from g++ to prevent special cases I don't see ?</p>
http://stackoverflow.com/questions/1479364/c-params-keyword-with-two-parameters-of-the-same-type4C# params keyword with two parameters of the same typeAndy2009-09-25T20:15:42Z2009-09-25T21:11:51Z
<p>I just encountered something with C# today that I hadn't thought of before. I have two methods in my class, one an overload of the other. They are declared like so:</p>
<pre><code>1) public void RequirePermissions(params string[] permissions)...
2) public void RequirePermissions(string message, params string[] permissions)...
</code></pre>
<p>In my code, I tried to call the first one like so:</p>
<pre><code>RequirePermissions("Permission1", "Permission2");
</code></pre>
<p>...expecting it to call the first overload. Well it called the second overload. The only way I can get it to call the first method in this case is to manually pass a string[] object like so:</p>
<pre><code>RequirePermissions(new string[] { "Permission1", "Permission2" });
</code></pre>
<p>Now, this behavior doesn't confuse me because I understand that the compiler can't tell which method I actually wanted to call based on my provided parameters. But was I not careful this could have gone unnoticed in my code. It seems as though Microsoft should have made the compiler throw an error when it encountered a situation like above. Does anyone have any thoughts on this? Is there another way to call the first overload other than the "solution" I posted?</p>
http://stackoverflow.com/questions/1332678/priority-when-choosing-overloaded-template-functions-in-c8Priority when choosing overloaded template functions in C++rstevens2009-08-26T06:23:17Z2009-08-26T08:16:47Z
<p>I have the following problem:</p>
<pre><code>class Base
{
};
class Derived : public Base
{
};
class Different
{
};
class X
{
public:
template <typename T>
static const char *func(T *data)
{
// Do something generic...
return "Generic";
}
static const char *func(Base *data)
{
// Do something specific...
return "Specific";
}
};
</code></pre>
<p>If I now do</p>
<pre><code>Derived derived;
Different different;
std::cout << "Derived: " << X::func(&derived) << std::endl;
std::cout << "Different: " << X::func(&different) << std::endl;
</code></pre>
<p>I get</p>
<pre><code>Derived: Generic
Different: Generic
</code></pre>
<p>But what I want is that for all classes derived from Base the specific method is called.
So the result should be:</p>
<pre><code>Derived: Specific
Different: Generic
</code></pre>
<p>Is there any way I can redesign the X:func(...)s to reach this goal?</p>
<p><b>EDIT:</b></p>
<p>Assume that it is not known by the caller of X::func(...) if the class submitted as the parameter is derived from Base or not. So Casting to Base is not an option.
In fact the idea behind the whole thing is that X::func(...) should 'detect' if the parameter is derived from Base or not and call different code.
And for performance reasons the 'detection' should be made at compile time.</p>
http://stackoverflow.com/questions/1243962/c-operator-overloading-casting-from-class2C++ Operator overloading - casting from classFredrik Ullner2009-08-07T10:04:59Z2009-08-07T14:50:01Z
<p>While porting Windows code to Linux, I encountered the following error message with GCC 4.2.3. (Yes, I'm aware that it's a slight old version, but I can't easily upgrade.)</p>
<p>main.cpp:16: error: call of overloaded ‘list(MyClass&)’ is ambiguous
/usr/include/c++/4.2/bits/stl_list.h:495: note: candidates are: std::list<_Tp, _Alloc>::list(const std::list<_Tp, _Alloc>&) [with _Tp = unsigned char, _Alloc = std::allocator]
/usr/include/c++/4.2/bits/stl_list.h:484: note: std::list<_Tp, _Alloc>::list(size_t, const _Tp&, const _Alloc&) [with _Tp = unsigned char, _Alloc = std::allocator]</p>
<p>I'm using the following code to generate this error. </p>
<pre><code>#include <list>
class MyClass
{
public:
MyClass(){}
operator std::list<unsigned char>() const { std::list<unsigned char> a; return a; }
operator unsigned char() const { unsigned char a; return a; }
};
int main()
{
MyClass a;
std::list<unsigned char> b = (std::list<unsigned char>)a;
return 0;
}
</code></pre>
<p>Has anyone experienced this error? More importantly, how to get around it? (It's possible to completely avoid the overload, sure, by using functions such as GetChar(), GetList() etc, but I'd like to avoid that.)</p>
<p>(By the way, removing "operator unsigned char()" removes the error.)</p>
http://stackoverflow.com/questions/1211203/does-c-4-0-and-a-combination-of-optional-parameters-and-overloads-give-you-a-war3Does C# 4.0 and a combination of optional parameters and overloads give you a warning about ambiguity?Lasse V. Karlsen2009-07-31T07:52:00Z2009-07-31T08:12:08Z
<p>I've started reading Jon Skeet's early access version of his book, which contains sections on C# 4.0, and one thing struck me. Unfortunately I don't have Visual Studio 2010 available so I thought I'd just ask here instead and see if anyone knew the answer.</p>
<p>If I have the following code, a mixture of existing code, and new code:</p>
<pre><code>public void SomeMethod(Int32 x, Int32 y) { ... }
public void SomeMethod(Int32 x, Int32 y, Int32 z = 0) { ... }
</code></pre>
<p>Will the compiler complain either at the definition site or the call site about possible ambiguity?</p>
<p>For instance, what will this piece of code actually do?</p>
<pre><code>SomeClass sc = new SomeClass();
sc.SomeMethod(15, 23);
</code></pre>
<p>Will it compile? Will it call the one without the z parameter, or will it call the one with the z parameter?</p>
http://stackoverflow.com/questions/1196179/method-overloading-and-polymorphism1method overloading and polymorphismDirk2009-07-28T19:17:31Z2009-07-28T19:41:01Z
<p>I'm writing a .NET web application in which administrators can customize the various data entry forms presented to their users. There are about half a dozen different field types that admins can create and customize (i.e. text, numeric, dropdown, file upload). All fields share a set of base attributes/behaviors (is the field required? Will it have a default field value?). There are also a series of field specific attributes/behaviors (i.e dropdown has a data source attribute, but text field does not). I'm leaving out many other characteristics of the problem domain for simplicity's sake. </p>
<p>The class hierarchy is straightforward: An abstract superclass that encapsulates common behaviors/attributes and about half a dozen concrete subclasses that deal with field specific stuff.</p>
<p>Each field type is rendered (i.e. mapped to) as a specific type of .NET server control, all of which derive from System.Web.UI.Control. </p>
<p>I created the following code to map values between the field domain objects and their corresponding UI control:</p>
<pre><code>public static void Bind(Control control, IList<DocumentFieldBase> fieldBaseList)
foreach (DocumentFieldBase fieldBase in fields){
if (typeof (DocumentFieldText).IsInstanceOfType(fieldBase)){
TextBox textbox = (TextBox) control;
textbox.Text = (fieldBase as DocumentFieldText).GetValue();
}
if (typeof (DocumentFieldDropDown).IsInstanceOfType(fieldBase)){
DropDown dropDown= (DropDown) control;
dropDown.Text = (fieldBase as DocumentFieldSelectOne).GetValue().Text;
dropDown.DataSource= (fieldBase as DocumentFieldSelectOne).DataSource;
dropDown.Id= (fieldBase as DocumentFieldSelectOne).GetValue().Id;
}
//more if statements left out for brevity
}
}
</code></pre>
<p>I want to ditch those ungodly if statements that perform type checking. The approach I was shooting for was to create a method overload for each combination of field/control using subclass typing. For example:</p>
<pre><code>public static void Bind(TextBox control, DocumentFieldText fieldText){
//some implementation code
}
public static void Bind(DropDown control, DocumentFieldDropDown fieldDropDown){
//some implementation code
}
</code></pre>
<p>I was hoping that I could then rely on .NET to call the appropriate overload at <strong>runtime</strong> using the specific subclass being used: For example:</p>
<pre><code>foreach (DocumentFieldBase field in fields){
Control control = FindControl(field.Identifier);
Bind(control, field)
}
</code></pre>
<p>Unfortunately, the compiler chokes when I try this:
Argument '1': cannot convert from 'System.Web.UI.Control' to 'TextBox'.</p>
<p>If I have to cast the first argument to TextBox, I'm back to performing type checking myself and defeats the whole purpose of this exercise.</p>
<p>Is what I'm trying to achieve a) possible and b) a good idea?</p>
http://stackoverflow.com/questions/1081253/inheriting-from-instance-in-python3Inheriting from instance in PythonAlexandra2009-07-04T01:02:45Z2009-07-04T10:12:09Z
<p>Hello, </p>
<p>In Python, I would like to construct an instance of the Child's class directly from an instance of the Parent class. For example:</p>
<pre><code>A = Parent(x, y, z)
B = Child(A)
</code></pre>
<p>This is a hack that I thought might work:</p>
<pre><code>class Parent(object):
def __init__(self, x, y, z):
print "INITILIZING PARENT"
self.x = x
self.y = y
self.z = z
class Child(Parent):
def __new__(cls, *args, **kwds):
print "NEW'ING CHILD"
if len(args) == 1 and str(type(args[0])) == "<class '__main__.Parent'>":
new_args = []
new_args.extend([args[0].x, args[0].y, args[0].z])
print "HIJACKING"
return Child(*new_args)
print "RETURNING FROM NEW IN CHILD"
return object.__new__(cls, *args, **kwds)
</code></pre>
<p>But when I run </p>
<pre><code>B = Child(A)
</code></pre>
<p>I get:</p>
<pre><code>NEW'ING CHILD
HIJACKING
NEW'ING CHILD
RETURNING FROM NEW IN CHILD
INITILIZING PARENT
Traceback (most recent call last):
File "classes.py", line 52, in <module>
B = Child(A)
TypeError: __init__() takes exactly 4 arguments (2 given)
</code></pre>
<p>It seems the hack works just as I expected but the compiler throws a TypeError at the end. I was wondering if I could overload TypeError to make it ignore the B = Child(A) idiom but I wasn't sure how to do that. In any case, would you please give me your solutions for inheriting from instances?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1021337/which-is-preferred-foovoid-or-foo-in-c0Which is preferred: foo(void) or foo() in C++George22009-06-20T10:02:01Z2009-06-21T10:29:57Z
<p>Hello everyone,</p>
<p>I have seen two styles of defining conversion operator overload in C++,</p>
<ol>
<li>operator int* (void) const</li>
<li>operator int*() const</li>
</ol>
<p>Question 1. I think the two styles (whether add void or not) have the same function, correct?
Question 2. Any preference which is better?</p>
<p>thanks in advance,
George</p>
http://stackoverflow.com/questions/992272/operator-overload-with-template-c2operator () overload with template C++fadini2009-06-14T05:54:15Z2009-06-14T08:29:00Z
<p>I have a simple class for which I want to overload operator as below</p>
<pre><code>class MyClass
{
public:
int first;
template <typename T>
T operator () () const { return first; }
};
</code></pre>
<p>And the somewhere else I have</p>
<pre><code>MyClass obj;
int i = obj(); // This gives me an error saying could not deduce
// template argument for T
</code></pre>
<p>Can someone help me with this error, much appreciated. Thank you.</p>
<p>edit:</p>
<p>This has something to do with the operator(), for example if i replace the function with</p>
<pre><code> template <typename T>
T get() const { return first;}
</code></pre>
<p>it works. Appreciate all the responses.</p>
http://stackoverflow.com/questions/916594/how-do-i-write-an-overload-operator-where-both-arguments-are-interface3How do I write an overload operator where both arguments are interfaceEric Girard2009-05-27T16:04:36Z2009-05-27T16:22:47Z
<p>Hi,</p>
<p>I'm using interface for most of my stuff. I can't find a way to create an overload operator + that would allow me to perform an addition on any objects implementing the IPoint interface</p>
<p>Code</p>
<pre><code>
interface IPoint
{
double X { get; set; }
double Y { get; set; }
}
</code>
</pre>
<pre><code>
class Point : IPoint
{
double X { get; set; }
double Y { get; set; }
//How and where do I create this operator/extension ???
public static IPoint operator + (IPoint a,IPoint b)
{
return Add(a,b);
}
public static IPoint Add(IPoint a,IPoint b)
{
return new Point { X = a.X + b.X, Y = a.Y + b.Y };
}
}
//Dumb use case :
public class Test
{
IPoint _currentLocation;
public Test(IPoint initialLocation)
{
_currentLocation = intialLocation
}
public MoveOf(IPoint movement)
{
_currentLocation = _currentLocation + intialLocation;
//Much cleaner/user-friendly than _currentLocation = Point.Add(_currentLocation,intialLocation);
}
}
</code></pre>
http://stackoverflow.com/questions/670331/how-to-change-this-design-to-avoid-a-downcast1How to change this design to avoid a downcast?basscinner2009-03-22T00:37:26Z2009-03-22T01:48:20Z
<p>Let's say I have a collection of objects that all inherit from a base class. Something like...</p>
<pre><code> abstract public class Animal
{
}
public class Dog :Animal
{
}
class Monkey : Animal
{
}
</code></pre>
<p>Now, we need to feed these animals, but they are not allowed to know how to feed themselves. If they could, the answer would be straightforward:</p>
<pre><code>foreach( Animal a in myAnimals )
{
a.feed();
}
</code></pre>
<p>However, they can't know how to feed themselves, so we want to do something like this:</p>
<pre><code> class Program
{
static void Main(string[] args)
{
List<Animal> myAnimals = new List<Animal>();
myAnimals.Add(new Monkey());
myAnimals.Add(new Dog());
foreach (Animal a in myAnimals)
{
Program.FeedAnimal(a);
}
}
void FeedAnimal(Monkey m) {
Console.WriteLine("Fed a monkey.");
}
void FeedAnimal(Dog d)
{
Console.WriteLine("Fed a dog.");
}
}
</code></pre>
<p>Of course, this won't compile, as it would be forcing a downcast. </p>
<p>It feels as if there's a design pattern or some other solution with generics that help me out of this problem, but I haven't put my fingers on it yet.</p>
<p>Suggestions?</p>
http://stackoverflow.com/questions/462995/graphics-drawrectanglepen-rectanglef1Graphics.DrawRectangle(Pen, RectangleF)noroom2009-01-20T20:37:37Z2009-02-22T22:12:52Z
<p><a href="http://msdn.microsoft.com/en-us/library/system.drawing.graphics.drawrectangle.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.drawing.graphics.drawrectangle.aspx</a></p>
<p>FillRectangle, DrawRectangle, FillElipse and DrawEllipse all can take 4 Float (or "Single") parameters: x, y, width, height. DrawRectangle is the only one that will not take a RectangleF, though.</p>
<p>I was wondering if anyone knew why this is. It sure seems like they just plain forgot to overload it.</p>
http://stackoverflow.com/questions/429125/override-and-overload-in-cpp1Override and overload in Cpp.Asafe2009-01-09T18:22:45Z2009-02-04T09:22:58Z
<p>Yes ,I do understand the difference between them.What I want to know is: why OVERRIDE a method?What is the good in doing it?
In case of overload :the only advantage is you haven't think in several names to functions?</p>
http://stackoverflow.com/questions/482808/javascript-function-literal-overloading2Javascript function() literal overloadingWilq322009-01-27T09:47:22Z2009-01-27T23:09:57Z
<p>I was always curious is there any possibility to overload function literal, something like you can do with Function:</p>
<pre><code>var test=Function;
Function=function(arg)
{
alert('test');
return test(arg);
}
var b=Function("alert('a')");
var c=Function("alert('x')");
b();
c();
</code></pre>
<p>Of course you can guess that this is nice way of debugging whole project. However any effort I made here goes for nothing. </p>
<p>Question for you experts is:</p>
<ol>
<li>Maybe there is something that i don't know, maybe there is possibility to overload this damn constructor? (but probably not).</li>
<li>If not then - how to do this - if this possible - in any of browser (not just by using javascript - but their extended language - every browser got something like this). </li>
<li>If not then - how this is done trough addOn like firebug or etc. ??</li>
</ol>
http://stackoverflow.com/questions/226144/puzzle-overload-a-c-function-according-to-the-return-value2Puzzle: Overload a C++ function according to the return valueMotti2008-10-22T15:02:00Z2009-01-09T21:02:03Z
<p>We all know that you can overload a function according to the parameters:</p>
<pre><code>int mul(int i, int j) { return i*j; }
std::string mul(char c, int n) { return std::string(n, c); }
</code></pre>
<p>Can you overload a function according to the return value? Define a function that returns different things according to how the return value is used:</p>
<pre><code>int n = mul(6, 3); // n = 18
std::string s = mul(6, 3); // s = "666"
// Note that both invocations take the exact same parameters (same types)
</code></pre>
<p>You can assume the first parameter is between 0-9, no need to verify the input or have any error handling.</p>
http://stackoverflow.com/questions/403929/which-compiler-is-correct-for-the-following-overloading-specialization-behavior4Which compiler is correct for the following overloading/specialization behavior?ididak2008-12-31T19:57:57Z2008-12-31T22:00:22Z
<p>Consider the following code:</p>
<pre><code>#include <stdio.h>
namespace Foo {
template <typename T>
void foo(T *, int) { puts("T"); }
template <typename T>
struct foo_fun {
static void fun() { foo((T *)0, 0); };
};
}
namespace Foo {
void foo(int *, int) { puts("int"); }
}
using namespace Foo;
int main() {
foo_fun<int> fun;
fun.fun();
}
</code></pre>
<p>What's the expected output? "T" or int?</p>
<p>One compiler (gcc 4.0.1 from Apple's Xcode 3.1.2) output "int", two other compilers (gcc 4.1.2 and 4.1.3) output "T".</p>
<p>If I move foo(int *, int) declaration/definition before the foo(T *, int) version, all output "int". Is the order of overloading/specialization in this case defined by the current standard?</p>