Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

156
votes
5answers
39k views

'Must Override a Superclass Method' Errors after importing a project into Eclipse

Anytime I have to re-import my projects into Eclipse (if I reinstalled Eclipse, or changed the location of the projects), almost all of my overridden methods are not formatted correctly, causing the ...
134
votes
7answers
32k views

Why is it important to override GetHashCode when Equals method is overriden in C#?

Given the following class public class Foo { public int FooId { get; set; } public string FooName { get; set; } public override bool Equals(object obj) { Foo fooItem = obj as ...
52
votes
4answers
80k views

Android: Override back button to act like home button

On pressing the back button, I'd like my application to go into the stopped state, rather than the destroyed state. In the Android docs it states: ...not all activities have the behavior that ...
50
votes
9answers
7k views

JavaScript: Overriding alert()

Has anyone got any experience with overriding the alert() function in JavaScript? Which browsers support this? Which browser-versions support this? What are the dangers in overriding the function?
43
votes
7answers
816 views

C# optional parameters on overridden methods

Seems like in .NET Framework there is an issue with optional parameters when you override the method. The output of the code below is: "bbb" "aaa" . But the output I'm expecting is: "bbb" "bbb" .Is ...
35
votes
4answers
30k views

Overriding a JavaScript function while referencing the original

(The answer to this, if there is one, is probably out there already, but I lack the proper terminology.) I have a function, a(), that I want to override, but also have the original a() be performed ...
32
votes
5answers
7k views

What's wrong with overridable method calls in constructors?

I have a Wicket page class that sets the page title depending on the result of an abstract method. public abstract class BasicPage extends WebPage { public BasicPage() { ...
31
votes
11answers
1k views

Is there a way to make a method which is not abstract but must be overridden?

Is there any way of forcing child classes to override a non-abstract method of super class? I need to be able to create instances of parent class, but if a class extends this class, it must give its ...
31
votes
9answers
1k views

why do we need the new keyword and why is the default behavior to hide and not override?

I was looking at this blog post and had following questions: Why do we need the new keyword, is it just to specify that a base class method is being hidden. I mean, why do we need it? If we don't ...
31
votes
7answers
3k views

Why doesn't Java allow overriding of static methods?

Why is it not possible to override static methods? If possible, please use an example.
31
votes
4answers
23k views

Inheritance and Overriding __init__ in python

I was reading 'Dive Into Python' and in the chapter on classes it gives this example: class FileInfo(UserDict): "store file metadata" def __init__(self, filename=None): ...
26
votes
5answers
8k views

Override to_json in Rails 2.3.5

Update: This issue was not properly explored. The real issue lies within render :json. The first code paste in the original question will yield the expected result. However, there is still a ...
23
votes
7answers
15k views

Safely override C++ virtual functions

I have a base class with a virtual function and I want to override that function in a derived class. Is there some way to make the compiler check if the function I declared in the derived class ...
20
votes
6answers
493 views

Should mutable collections override equals and hashCode?

I was just wondering if it was a good idea to override equals and hashCode for mutable collections. This would imply that if I insert such a collection into a HashSet and then modify the collection, ...
16
votes
3answers
2k views

Is there any way in C# to override a class method with an extension method?

There have been occasions where I would want to override a method in a class with an extension method. Is there any way to do that in C#? For example: public static class StringExtension { ...
16
votes
8answers
8k views

Override a function call in C

I want to override certain function calls to various APIs for the sake of logging the calls, but I also might want to manipulate data before it is sent to the actual function. For example, say I use ...
16
votes
2answers
9k views

Type erasure, overriding and generics

Can someone explain to me why @Override public void fooMethod(Class<?> c) doesn't override public void fooMethod(Class c) and gives me the following errors instead: - Name clash: The ...
15
votes
3answers
10k views

Custom ImageView with drop shadow

Okay, I've been reading and searching around, and am now banging my head against the wall trying to figure this out. Here's what I have so far: package com.pockdroid.sandbox; import ...
14
votes
1answer
160 views

Overriding a method with an object

Why is it possible to override an empty-parentheses method with an object? trait A { def meth = {} def meth_p() = {} } class B extends A { object meth_p } // compiles Overriding the method ...
14
votes
3answers
5k views

Overriding a Base's Overloaded Function in C++

I ran into a problem where after my class overrode a function of its base class, all of the overloaded versions of the functions were then hidden. Is this by design or am I just doing something ...
13
votes
2answers
765 views

can we override alloc and dealloc in objective C?

I know that this is rarely required to override the alloc or dealloc methods,but if required is it possible in iPhone programming?
13
votes
5answers
2k views

Overriding GetHashCode for mutable objects? [C#]

I've read about 10 different questions on when and how to override GetHashCode but there's still something I don't quite get. Most implementations of GetHashCode are based on the hash codes of the ...
12
votes
4answers
904 views

C++ “virtual” keyword for functions in derived classes. Is it necessary?

With the struct definition given below... struct A { virtual void hello() = 0; }; Approach #1: struct B : public A { virtual void hello() { ... } }; Approach #2: struct B : public A { ...
12
votes
11answers
2k views

Force a class to override the .equals method

I have a bunch of class who implement a common interface : Command. And this bunch of class goes to a Map. To get the Map working correctly, I need to each class who implements Command to override ...
12
votes
9answers
12k views

Override Default Constructor of Partial Class with Another Partial Class

I don't think this is possible, but if is then I need it :) I have a auto-generated proxy file from the wsdl.exe command line tool by Visual Studio 2008. The proxy output is partial classes. I want ...
12
votes
5answers
3k views

Why can final constants in Java be overriden?

Consider the following interface in Java: public interface I { public final String KEY = "a"; } And the following class: public class A implements I { public String KEY = "b"; public ...
11
votes
3answers
257 views

Is there a tool to add the “override” identifier to existing C++ code

The task I am trying to work out how best to add C++0x's override identifier to all existing methods that are already overrides in a large body of C++ code, without doing it manually. (We have many, ...
11
votes
4answers
2k views

Java: Should I add an @Override annotation when implementing abstract methods?

When overriding a virtual method in Java, use of the @Override annotation is recommended, but what if I implement an abstract method? Should I use @Override then as well?
10
votes
2answers
177 views

Why static method overrides base class non-static method?

struct B { void foo () {} }; struct D : B { using B::foo; static void foo () {} }; int main () { D obj; obj.foo(); // calls D::foo() !? } Member method and static member method are ...
10
votes
1answer
1k views

C#: Property overriding by specifying the interface explicitly

While attempting to override the explicit interface implementation of the ICollection<T>.IsReadOnly property from the Collection<T> class, I came across some documents stating that ...
10
votes
3answers
333 views

C++ virtual override functions with same name

I have something like that (simplified) class A { public: virtual void Function () = 0; }; class B { public: virtual void Function () = 0; }; class Impl : public A , public B { ...
10
votes
4answers
928 views

Confused about “override” vs. “new” in C#

I'm having the following classes: class Base { public virtual void Print() { Console.WriteLine("Base"); } } class Der1 : Base { public new virtual void Print() { ...
10
votes
9answers
454 views
9
votes
4answers
778 views

How to override the (final) equals method in java enums?

I have a problem with overriding the equals method in an Enum to make it compatible with other classes. The Enum implements an interface and the idea is that all implementations of this interface can ...
9
votes
5answers
1k views

Calling the overriden method from the base class in C#

Given the following C# class definitions and code: public class BaseClass { public virtual void MyMethod() { ...do something... } } public class A : BaseClass { public ...
9
votes
4answers
694 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 ...
9
votes
3answers
2k views

Confusing “override a private method”

I have two question on this code public class Override { private void f() { System.out.println("private f()"); } public static void main(String[] args) { Override po = new ...
9
votes
3answers
2k views

Overriding “+=” in Python? (__iadd__() method)

Is it possible to override += in Python?
9
votes
5answers
7k views

Calling base method using javascript prototype

Is it possible to call the base method from a prototype method in javascript if it's been overridden? MyClass = function(name){ this.name = name; this.do = function(){ //do somthing }; }; ...
8
votes
1answer
66 views

In python - the operator which a set uses for test if an object is in the set

If I have a list of objects, I can use the __cmp__ method to override objects are compared. This affects how the == operator works, and the item in list fuction. However, it doesn't seem to affect the ...
8
votes
2answers
179 views

Strange Effect with Overridden Properties and Reflection

I've come across a strange behaviour in .NET/Reflection and cannot find any solution/explanation for this: class A { public virtual string TestString { get; set; } } class B : A { public ...
8
votes
1answer
118 views

XML Comments for Override Properties

I'm using MonoDevelop 2.4.2 for OS X (the version that comes with Unity 3.4.1), and was wondering if there was some way to inherit comments from the base class or property. Example: public class Foo ...
8
votes
2answers
133 views

How can I define a custom equality operation that will be used by immutable Set comparison methods

I have an immutable Set of a class, Set[MyClass], and I want to use the Set methods intersect and diff, but I want them to test for equality using my custom equals method, rather than default object ...
8
votes
2answers
127 views

How to be warned when overriding a virtual method with wrong visibility

When overriding a virtual method, I noticed that when I make a mistake in the visibility (protected method overridden as a public method), I'm not warned by the compiler. It is valid C++, but usually ...
8
votes
6answers
192 views

How to change behavior of dict() for an instance

So I'm writing a class that extends a dictionary which right now uses a method "dictify" to transform itself into a dict. What I would like to do instead though is change it so that calling dict() on ...
8
votes
6answers
421 views

Java: Calling a super method which calls an overridden method

public class SuperClass { public void method1() { System.out.println("superclass method1"); this.method2(); } public void method2() { ...
8
votes
3answers
2k views

Java, What does @Override mean?

public class NaiveAlien extends Alien { @Override public void harvest(){} } I was trying to understand my friend's code, and I do not get the syntax, @Override in the code. What does that ...
8
votes
1answer
837 views

Invocation of a polymorphic-like event

Considering the code below: public class TableMain { public virtual event Action UpdateFilter; .... } public class TableSub : TableMain { public override event Action UpdateFilter; ...
8
votes
7answers
619 views

How should I define a good hashCode for a circular linked list in Java?

I have set up a circular linked list data structure that represents a word, and each element in the list is a letter from the word. At the bottom of my question are the class definitions of the list ...
8
votes
4answers
464 views

How to “properly” override a base class method?

Whenever i override a method of a base class, other than my implementation of this method, i seem to have 3 choices. 1) Call base.Method(), and then provide my implementation. 2) Provide my ...

1 2 3 4 5 22