8
votes
5answers
187 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 …
4
votes
2answers
114 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?
4
votes
7answers
321 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
204 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
220 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 …
4
votes
2answers
198 views
Which compiler is correct for the following overloading/specialization behavior?
Consider the following code:
#include <stdio.h>
namespace Foo {
template <typename T>
void foo(T *, int) { puts("T"); }
template <typename T>
struct foo_fun {
static …
3
votes
2answers
135 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 …
3
votes
2answers
109 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 available so I thought I'd …
3
votes
5answers
212 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 is a hack that I …
3
votes
3answers
155 views
How do I write an overload operator where both arguments are interface
Hi,
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
Code
…
2
votes
4answers
53 views
Finding and invoking a generic overloaded method
How can I find a generic overloaded method? For example, Queryable's
public static IQueryable<TResult> Select<TSource , TResult> ( this IQueryable<TSource> source , …
2
votes
3answers
661 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 …
2
votes
5answers
408 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 { return first; }
};
…
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.
…
2
votes
1answer
419 views
Javascript function() literal overloading
I was always curious is there any possibility to overload function literal, something like you can do with Function:
var test=Function;
Function=function(arg)
{
alert('test');
return …
