Method overriding, in object oriented programming, is a language feature that allows a subclass or child class to provide a specific implementation of a method that is already provided by one of its superclasses or parent classes.

learn more… | top users | synonyms

2
votes
2answers
74 views

how does base class know about sub class method?

public class BaseClass { private String className; public BaseClass() { className = "[BaseClass]"; } public void executeAB() { System.out.println(className + " ...
5
votes
3answers
82 views

public const doesn't override private const function?

I have a class with a header like this: public: const dtMeshTile* getTile(int i) const; private: dtMeshTile* getTile(int i); When I try to use it like this: const dtMeshTile* const tile ...
0
votes
1answer
46 views

Generating a unique Hashcode based on Doubles with several decimal places

I have a custom object that we'll call "MyObject" It has three major properties called X,Y, and Z that determine whether it's unique or not. I have a HashSet containing 400,000 "MyObject"s in a ...
0
votes
1answer
16 views

when we create any objecet why we need to create base class of one class and instance of another class?

Consider below code example class BC { public virtual void Display() { System.Console.WriteLine("BC::Display"); } } class DC : BC { public override void Display() { ...
0
votes
1answer
79 views

Java override method from another class without inheritance

I found a similar question here: overriding methods without subclassing in Java But mine a little different, I have two classes, 1 GUI based, and the other just methods to modify elements in first ...
-3
votes
2answers
51 views

Java using static method as overridden method [closed]

I know Its not supported, unlike in php. Let me draft my system. Its a 2D scrolling game, with object (Cloud, Star, Bird), with a common, "BaseItem" class. Different things can happen on collision ...
1
vote
3answers
90 views

Overriding method

Class subA is the subclass of class A. I tried to override a method but Somehow it doesn't let me override it. why is that? Is it because of the argument in the parameter? Error message read: ...
0
votes
2answers
65 views

Overriding an Enum

I know this has been answer before, but I cannot seem to find an answer for exactly what I want, the others are too specific. Here is my general question; How do you override an enum? Would this work? ...
0
votes
3answers
25 views

Overiding global variable [js]

I would like to modify following code to list "hello world" from 'a' variable without passing it to function. Is it possible? var a = "declared variable"; var fc = function () { console.log(a); }; ...
0
votes
0answers
13 views

Overriding the power button in Android and get into black screen

I try develop something to overriding the power button in Android and get into black screen, and the function will also avoid device to shutting down. Is there anything to disable the power button as ...
3
votes
1answer
75 views

How can I extend $q promise in Angularjs with a .succes and .error

I wrote this little code in a custom service in AngularJS. In my service : var deferred = $q.defer(); var promise = deferred.promise; deferred.resolve('success'); ...
3
votes
4answers
80 views

Method overriding and overloading in Java

I was testing a code when I faced something strange that I could not figure out why this is happening. So I will give a simple example of what happened there. Consider these classes public class A { ...
0
votes
3answers
47 views

Overriding equals without custom class

I'm trying to store a set of possible choices and eliminate duplicates so I'm storing the choices I've made in a HashSet. I have two pieces of data for each step and the combination of both must not ...
0
votes
1answer
20 views

Modifying Joomla extensions without worring about updating them

I want to modify a Joomla extension code. I know how to use template overrides, but the extension is not written in MVC pattern and even if it was, I would be going to change the controller code. In ...
0
votes
1answer
69 views

How can I add to a predefined method?

I was wondering if there is a way to add to a predefined method such that everything that the method already does runs the same, but it just incorporates what I want it to do. The method is from an ...
-2
votes
1answer
22 views

JAVA static variables ,overriding and overloading [closed]

Why do we use overloading and overriding? Why do we use static variables? In java
-1
votes
2answers
32 views

Having trouble overriding the document object in JavaScript

I'm having a spot of trouble overriding the document object for my JavaScript. function myFunction(document) { [code] } works fine. But function myFunction(newDocument) { ...
0
votes
1answer
29 views

Dynamic linking in C++ not working

I have a problem with a small program. I hope you can open my eyes. I have one class, "User", with "name" as a class member and a "toString()" method: class User { protected: string name; ...
0
votes
1answer
67 views

How do I send information from my Overridden ActionListener method to the main method in Java?

Basically, I'm a newbie creating a program that gives questions, randomizes the index of the right answer and then displays the questions in a JFrame. I can easily perform any tasks that I add to this ...
0
votes
1answer
55 views

Understanding Zend_Controller_Request_Abstract and other core Zend classes

I am digging deep into the Zend framework and at this point I am a little confused. I am particularly checking out the Zend_Controller_Action (*_Action), Zend_Controller_Request_HTTP(*_HTTP) and ...
0
votes
2answers
53 views

Remove/Deprecate a method in subclass

I want to remove a method from a class that is present in it's super class. I can deprecate the superclass method using the @Deprecated annotation, but it is still accessible in the subclass. Eg: ...
1
vote
7answers
211 views

Subclass-specific code - should I use abstract base class methods or an interface?

I have a super-class, Animal, with two subclasses, Cat and Dog. Dog and Cat both need to have specific methods for speaking and moving. Here are two alternatives for achieving this: Animal will have ...
-2
votes
3answers
70 views

Overriding and Overloading Java

I have two questions. Im trying to understand Overriding and Overloading Can we have method overriding without inheriting another class? Why? Can we have method overloading without inheriting ...
2
votes
1answer
81 views

How to implement a generic method of the same interface in different ways?

I defined the Face interface as following: public interface Face { <R> LoadBalancer<R> create(List<R> resources); } Then another interface Type and two classes which ...
0
votes
7answers
70 views

overriding Object methods good programming practice?

for a programming project we made about two dozen classes which we need. Is it good programming practice to override equals() and hashcode() functions from Object even though we are not using them? We ...
3
votes
4answers
55 views

overriding? upcasting?

The following code has the bug: last line should be bp->g(); The question is, if I comment out that line, bp->f() actually calls the Derived version, So I assume the compiler treat bp as class ...
0
votes
1answer
33 views

Overriding UIAlertView (View background)

I am overriding the UIAlertView class with something similar seen in this tutorial http://mobile.tutsplus.com/tutorials/iphone/ios-sdk-uialertview-custom-graphics/ So I am overriding the drawRect... ...
2
votes
1answer
84 views

Preferred method of overriding an emacs lisp function?

I have rewritten and stand-alone tested the behaviour of an inner function invoked by one of the Emacs functions bundled with Emacs 24. What is the preferred way of incorporating - e.g. in my init.el ...
-3
votes
1answer
55 views

When is it most beneficial to use a virtual function instead of overriding and vice versa in C++ [closed]

I am fairly new to C++ and am curious when is it most beneficial time to use a virtual function instead of just using overriding and vice versa in C++?
2
votes
6answers
91 views

how to call the overridden method of superclass

Maybe this could be very simple but I am confused about my little example. public class Animal { public void eat() { System.out.println("Animal Eats"); } public void shit() { ...
1
vote
2answers
75 views

CSharp virtual method and parameters

public abstract class State { public virtual Enter(/* THIS NEED A PARAMETER */) { // an empty method } } public class PlayerState : State { public override Enter(Player pl) { // method implementation ...
-2
votes
1answer
43 views

PHP: Overriding default string functions if you only intend to use your software [closed]

This is kind of a follow up question to some of the questions I've asked recently, but let's say I'm using my own software and no external frameworks or libraries. Is it still a bad idea to override ...
0
votes
2answers
41 views

Overriding PHP's Default String Functions with mb_string functions

So I've posted several questions related to making already existing software written in PHP to be updated to support unicode / utf8. One of the solutions is to override PHP's default string functions ...
0
votes
0answers
163 views

Overriding cut, copy and paste on DataGridView cells, is it possible?

For example, when you "Ctrl + C" on a selected DataGridViewCell you got its content on clipboard, that's OK, but when the selection extends on all the row, you got all cell values joined by a '\t' ...
3
votes
1answer
77 views

trying to override alert, it works, but executes twice

so, call me lazy but I'm trying to add a bit of syntactic sugar to Javascript's alert function. Here's the code: <script src='jquery.js'></script> <script> window.nativeAlert = ...
1
vote
2answers
88 views

Method overriding/hiding behavior in C#

My understanding of C# is that a subclass cannot override a parent's implementation of a method unless that method is marked virtual. If a subclass declares a method with the same name of a parent ...
2
votes
3answers
167 views

Override WinForms MessageBox Control

All, I understand that for extensively customised dialogs I would need to create my own form and ShowDialog(). However, in my current case I would just like to extend the MessageBox class to ...
0
votes
5answers
150 views

How to write override methods in Java

This is part of a homework assignment. I am trying to make a class named RomanNumeral that has several methods. The first method, RomanNumeral checks whether a string rn is a Roman Numeral or not. ...
3
votes
2answers
280 views

How to override built-in PHP function(s)?

I would like to override, let's say mysql_num_rows with let's say following: $dataset = array(array('id' => 1, 'name' => 'Zlatan', 'onSOF' => 1), array('id' => 1, 'name' => 'Guest', ...
-1
votes
1answer
55 views

Overriding/hiding/inheritance questions with code?

with the below code I have the following questiosn regarding hiding/overriding: 1) If I call DoStuff with p, which DoStuff implementation will be called? 2) If I remove the “virtual” keyword from ...
1
vote
2answers
96 views

How Overloading and Overriding work together?

I understand the basics of overloading and overriding- but something is confusing me. I will try to explain using a simple example: Class B has a function X(B& b) Class D inherits from Class ...
-1
votes
2answers
158 views

Overriding of Tableview Datasource/Delegate Methods

I have one parent class with one tableview. That class is the delegate and datasource of that tableview as well. Now I subclassed (derived) that class and made a child class. I have one tableview ...
0
votes
4answers
107 views

function overriding with different return types

Does the return type influence on function overriding? (As far as I know return typde is not a part of a function/method signature) In a base class I have a function, which doesn't get arguments, ...
2
votes
1answer
36 views

Overriding functions that takes inherited structures

struct struct1 {}; struct struct2:public struct1 {}; class Base { public: virtual void foo(struct1 *s) { cout<<"foo in Base"<<endl; } }; class Der:public Base { public: ...
7
votes
2answers
111 views

Grandparent overloaded function in child

I need to understand why C++ don't allow to access Grandparent overloaded functions in Child if any of the overloaded function is declared in Parent. Consider the following example: class ...
1
vote
3answers
102 views

CSS How to override specific selectors in parent theme?

I am creating a child theme of the Limon theme. This parent theme uses a lot of specific selectors such as div#container_wrap {} div#header ul#nav {} div.page_heading {} I am doing a fair bit of ...
3
votes
5answers
659 views

Overriding a method with different return types in java?

I have read a book and it says I can override a method if it has the same signature. according to the book the signature of a method is Method_Name + Parameters passed. as per the book, i can ...
0
votes
1answer
29 views

Task overriding in Ant [closed]

I would like to have an exemple of a build file Ant which features task overriding (using element) because I don't understand this notion. Thanks
0
votes
1answer
125 views

Overriding third-party software GUI

Let say I have some third-party program installed on my computer with Windows 7 OS. When I run it, I see the following: I don't know anything about the program innards and all I want is to ...
1
vote
1answer
62 views

Overriding * in css style

My css style sheet: * {vertical-align:top;} input.test {vertical-align:middle;} This is an example of my html code: <input class="test" /><input class="test" /> So I would like ...

1 2 3 4 5 7