Tagged Questions
The function-overriding tag has no wiki summary.
15
votes
8answers
1k views
Why would a virtual function be private?
I just spotted this in some code:
class Foo {
[...]
private:
virtual void Bar() = 0;
[...]
}
Does this have any purpose?
(I am trying to port some code from VS to G++, and this caught my ...
10
votes
1answer
183 views
Rails - how can I make a request that doesn't hit the database at all?
In order to trace some performance issues, I'm trying to create a page that is rendered through the Rails (2.3.8) framework but makes no calls whatsoever to the database.
I want the request to go ...
7
votes
3answers
2k views
C++ inheritance and function overriding
In C++, will a member function of a base class be overridden by its derived class function of the same name, even if its prototype (parameters' count, type and constness) is different? I guess this a ...
5
votes
2answers
109 views
Using Public Final Member Variables and Overridable Methods in a Constructor
I have questions about a couple techniques I'm using in designing a class. I've declared some of its members as public final instead of private, and the constructor calls overridable methods. I know ...
4
votes
4answers
61 views
Android Activity which overridden functions must call super.*
When creating own Activity subclass, we are overriding some of the basic Activity lifecycle functions.
In which of these we must call super implementation, where we should and where is it only good ...
4
votes
1answer
122 views
Please help my OOPS concepts
Okie. I can't believe this is happening but may be some comments from you will help.
I have a Parent class.
import java.util.HashMap;
import java.util.Map;
public class Parent {
...
3
votes
1answer
42 views
Javascript implementation dilemna: looking for a class with method overriding solution
I am no expert with Javascript. I have developed an operational page, using a function to define a class (as described here) for some of my JS code. This class is quite complex and helps computing ...
2
votes
2answers
94 views
Unable to override PHP class / function
I am unable to override a function in a child class at my local Ubuntu test LAMP server, but the very same code is resulting in the desired override when uploaded to a webserver.
Original class:
...
2
votes
6answers
2k views
How to prevent derived class from making a private/protected virtual function public?
There are good reasons for constructing the base class interface with all virtual functions as private or protected (see this). But then how does one prevent the derived classes (which may be in the ...
1
vote
5answers
92 views
How to call the original method when it is monkey-patched?
I have a class in the main project I don't want to change.
class A():
def __init__(self, firstname, lastname):
self.firstname = firstname
self.lastname = lastname
def ...
1
vote
2answers
92 views
Function overriding in native C++
Is the following code the correct way to call a base class's overridden function from a derived class's function?:
#include "stdafx.h"
#include <iostream>
class BaseClass
{
public:
virtual ...
1
vote
6answers
1k views
Force calling the base method from outside a derived class
I have two classes:
public class MyBase
{
public virtual void DoMe()
{
}
}
public class MyDerived:MyBase
{
public override void DoMe()
{
throw new ...
0
votes
2answers
52 views
Override setContentOffset
is it allowed to override the setContentOffset method of an UIScrollView while subclassing?? Is this AppStore save?
sample:
-(void)setContentOffset:(CGPoint)contentOffset {
[super ...
0
votes
2answers
53 views
Python: Overriding a Unknown class
Consider this example:
x = a.some_class_instance
x.foo()
I want to decorate x.foo()
something along the lines of
@x.foo()
def dec()
print 'decorator'
x.foo()
Is there anyway to ...
0
votes
1answer
149 views
How to use the hide methods in API?
I have seen some hide methods in
/** @hide */
public void setDiscoverableTimeout(int timeout) {
if (getState() != STATE_ON) return;
try {
mService.setDiscoverableTimeout(timeout);
...
0
votes
1answer
332 views
Indirect call of virtual function from Destructor
Let me make this disclaimier : I have clear understanding of virtual function call in Constructor or Destructor.
In the below code I am trying to avoid virtual destructor ONLY FOR EXPERIMENTAL ...
0
votes
1answer
284 views
How to override the transform.matrix setter
I have a class which extends the Sprite object in as3. I need to be able to override the transform.matrix setter in this class but haven't been successful in doing so.
I've tried many things, along ...