1
vote
3answers
66 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 …
1
vote
4answers
99 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 …
0
votes
4answers
98 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 …
8
votes
4answers
190 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 …
10
votes
4answers
99 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 …
0
votes
2answers
55 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 …
4
votes
2answers
204 views
Delphi/pascal: overloading a constructor with a different prototype
I'm trying to create a child class of TForm with
a special constructor for certain cases, and
a default constructor that will maintain compatibility with current code.
This is the code I have …
3
votes
4answers
89 views
Visual Studio Intellisense not showing methods on generic overload
Given the following two interfaces (these are small examples, not my actual implementation):
public interface IAssertion<T> {
IAssertion<T> IsNotNull();
IAssertion<T> …
1
vote
6answers
122 views
Is it common (or encouraged) practice to overload a function to accept IEnumerable<T>, ICollection<T>, IList<T>, etc.?
EDIT:
From the answers given, it's been made rather clear to me how the design I'm asking about below should actually be implemented. With those suggestions in mind (and in response to a comment …
0
votes
4answers
187 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
135 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 …
1
vote
1answer
25 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
2answers
56 views
C# Custom Events with Overloads
So I have a custom event like this:
Work w = new worker()
w.newStatus += new worker.status(addStatus);
w.doWork();
void addStatus(string status)
{
MessageBox.Show(status);
…
2
votes
3answers
211 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 …
0
votes
5answers
62 views
what is operation overloading? [closed]
Assuming I have a function that compares to of my objects: obj1, and obj2. This function returns 0 if obj1 and obj2 are equal then it is called operation overloading
