Tagged Questions

1
vote
8answers
120 views

java: different return types when overloading

Hi, I have a class tree like this: master class abstract class Cell AvCell extends Cell FCell extends Cell i have an abstract method getValue() in Cell Is it posibble to make …
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
159 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
4answers
109 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
1answer
139 views

C++ operator[] syntax.

Just a quick syntax question. I'm writing a map class (for school). If I define the following operator overload: template<typename Key, typename Val> class Map {... Val* o …
3
votes
2answers
125 views

Access to Perl’s empty angle “<>” operator from an actual filehandle?

I like to use the nifty perl feature where reading from the empty angle operator <> magically gives your program UNIX filter semantics, but I'd like to be able to access this …
0
votes
1answer
85 views

Overloading array insertion?

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' …
1
vote
4answers
91 views

Java Overload method with inherited interface

Hi all, i'm trying to understand java behaviour. Using this interfaces : public interface IA {} public interface IB extends IA {} public class myClass implements IB {} I'm over …
4
votes
7answers
302 views

Abusing the comma operator in C++

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 Strings that has the following members: Strings(); Strings(con …
4
votes
1answer
188 views

C++ override/overload problem

I'm facing a problem in C++ : #include <iostream> class A { protected: void some_func(const unsigned int& param1) { std::cout << "A::some_func(" << …
4
votes
5answers
190 views

C# params keyword with two parameters of the same type

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: 1) public void …
9
votes
5answers
175 views

Priority when choosing overloaded template functions in C++

I have the following problem: class Base { }; class Derived : public Base { }; class Different { }; class X { public: template <typename T> static const char *func(T …
2
votes
3answers
605 views

C++ Operator overloading - casting from class

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.) main.cp …
3
votes
2answers
102 views

Does C# 4.0 and a combination of optional parameters and overloads give you a warning about ambiguity?

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 availab …
1
vote
3answers
173 views

method overloading and polymorphism

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 …

1 2 next
15 30 50 per page