2
votes
7answers
168 views
Function/Method Overloading C++: Data type confusion?
Hi,
I'm having some trouble overloading methods in C++.
As an example of the problem, I have a class with a number of methods being overloaded, and each method having one parameter with a different …
3
votes
9answers
960 views
function overloading in C
is there any way to achieve function overloading in C? i am looking at simple functions to be overloaded like
foo (int a )
foo (char b )
foo ( float c , int d) ...
I think there is no straight …
0
votes
2answers
70 views
`using` statement across two DLLs
I have a class defined in one DLL, with a certain member that is overloaded.
A second DLL imports that class, inherits from it and exports the inherited class. The inherited class overrides one of the …
0
votes
4answers
109 views
operator overloading in python [closed]
Possible Duplicates:
Python: defining my own operators?
Rules of thumb for when to use operator overloading in python
hi.. can i overload operators in python?
if so, can i define new …
1
vote
9answers
89 views
methods overriding and overloading
can i overload or override methods just by using different return value ? is virtual matter in thie case ?
for example :
class A{
virtual int Foo(); // is this scenario possible with/without the …
6
votes
4answers
118 views
Can Visual Studio’s C# intellisense be given a hint to display a certain method overload first?
Hi everyone,
I have two methods that are overloads of each other
public class Car
{
public int GetPrice(string vinNumber)
{
string make = Database.GetMake(vinNumber); // expensive …
0
votes
2answers
37 views
Accessing a class variable overloading brackets [] operators method in Ruby
Hi i want to do the following. I simply want to overload the [] method in order to access the instance variables... I know, it doesn't make great sense at all, but i want to do this for some strange …
1
vote
3answers
70 views
Overloaded package-private method causes compilation failure - Is this a JLS oddity or javac bug?
I've come across an oddity of the JLS, or a JavaC bug (not sure which). Please read the following and provide an explanation, citing JLS passage or Sun Bug ID, as appropriate.
Suppose I have a …
0
votes
4answers
103 views
overloading new and delete problem
Hi!
I try to follow this article:
http://flipcode.com/archives/How%5FTo%5FFind%5FMemory%5FLeaks.shtml
to overload my new and delete functions in order to track memory leaks.
however - if i try to …
1
vote
4answers
110 views
Is it possible to override a non-virtual method?
Is there any way to override a non-virtual method? or something that gives similar results (other than creating a new method to call the desired method)?
I would like to override a method from …
8
votes
4answers
207 views
Why does this work? Method overloading + method overriding + polymorphism
In the following code:
public abstract class MyClass
{
public abstract bool MyMethod(
Database database,
AssetDetails asset,
ref string errorMessage);
}
public sealed class …
2
votes
3answers
215 views
Can I overload Perl’s =? (And a problem while use Tie)
I choose to use tie and find this:
package Galaxy::IO::INI;
sub new {
my $invocant = shift;
my $class = ref($invocant) || $invocant;
my $self = {']' => []}; # ini section can never be …
10
votes
4answers
125 views
Public operator new, private operator delete: getting C2248 “can not access private member” when using new
A class has overloaded operators new and delete. new is public, delete is private.
When constructing an instance of this class, I get the following error:
pFoo = new Foo(bar)
example.cpp(1): error …
2
votes
6answers
681 views
overload print python
Am i able to overload the print function? and call the normal function? What i want to do is after a specific line i want print to call my print which will call the normal print and write a copy to …
0
votes
2answers
63 views
Overloading Default Construction with Initializer List
I need to know how to get something to work. I've got a class with a constructor and some constants initialized in the initializer list. What I want is to be able to create a different constructor …
