1
vote
7answers
68 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 …
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 …
0
votes
1answer
118 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
114 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
79 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
79 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
282 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
179 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(" << …
3
votes
5answers
173 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
157 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
520 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 …
1
vote
3answers
162 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 …
3
votes
2answers
97 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 …
2
votes
5answers
354 views
operator () overload with template C++
I have a simple class for which I want to overload operator as below
class MyClass
{
public:
int first;
template <typename T>
T operator () () const { …
3
votes
5answers
193 views
Inheriting from instance in Python
Hello,
In Python, I would like to construct an instance of the Child's class directly from an instance of the Parent class. For example:
A = Parent(x, y, z)
B = Child(A)
This …
