2
votes
4answers
123 views
JAR multiple download
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.
…
4
votes
2answers
108 views
How can I call methods on Perl scalars?
I saw some code that called methods on scalars (numbers), something like:
print 42->is_odd
What do you have to overload so that you can achieve this sort of "functionality" in your code?
1
vote
8answers
141 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 the method …
1
vote
1answer
24 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, overloaded points out the …
0
votes
4answers
180 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 little literature …
0
votes
4answers
129 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 a stack class based …
0
votes
1answer
149 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* operator[](Key k);
…
3
votes
2answers
131 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 feature through an …
0
votes
1answer
87 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'd like to construct …
1
vote
4answers
100 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 overloading a method …
4
votes
7answers
311 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(const Strings& …
4
votes
1answer
194 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(" << param1 << ")" …
4
votes
5answers
203 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 …
8
votes
5answers
180 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 *data)
{
// Do …
2
votes
3answers
637 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.cpp:16: error: call of …
