The function-overriding tag has no wiki summary.
3
votes
1answer
69 views
Overwrite c static function behind function-pointer
I have a problem which I cannot get solved since several weeks.
I'm sure there is a solution and maybe one here has an idea.
There is a shared-library called libaudio.so which looks like this:
...
0
votes
1answer
29 views
Magento: Module Function Override -> What is accessible to the overridden function?
I created a custom module to add an event to the Checkout Model saveBilling() function contained in Mage/Checkout/Model/Type/Onepage.php. Aside from the event firing properly every time it's called, ...
0
votes
0answers
29 views
This is about the code for method overriding in C?? Not C# or C++
How to implement method moverriding in C?? I have a file B which inherits from file A. Thn how to redirect the function pointer of A in class_init of B to some function of B? As we cant use object in ...
5
votes
5answers
119 views
Can I override only one method in inheritence?
My C++ code is as follows:
#include<iostream>
using namespace std;
class A
{
public:
virtual void f(int i)
{
cout << "A's f(int)!" << endl;
...
3
votes
2answers
276 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', ...
2
votes
1answer
103 views
C++: How to have a different class function manipulate my class member variable
I am probably missing something very simple, but I'll be very grateful if someone can point me in the right direction.
I have 2 classes: A and B. A has a collection of data structures and functions ...
6
votes
2answers
125 views
partial ordering with L-value-ref
Why this is ambiguous?
template<class T> void g(T) {} // 1
template<class T> void g(T&) {} // 2
int main() {
int q;
g(q);
}
I understand that this is partial ordering ...
0
votes
3answers
114 views
How to hide all overrides off parent method in C#
I'm extending a libary class which has a public Method that I don't wan't to be callable from the outside. I know that I can hide it using the "new" keyword, but the problem is, that it has a lot of ...
0
votes
2answers
102 views
Calling an overridden function from a list of its base class?
Let's say I have an empty class with a virtual function:
class Base
{
public:
virtual void Foo(){std::cout << "this is the base class";}
}
Then I have a class that inherits from Base and ...
0
votes
1answer
50 views
Trouble overiding function of derived class
I'm having some trouble calling overridden functions with my AVL tree. It's calling the one from the BST tree. This is a bit more confusing than usual because AVLNode is derived from BinaryNode. I ...
0
votes
1answer
285 views
android asyncTask<String, void, void> to download file without progress and result
I want to run a task that would accept a single string and download that file from the server.
Since network related operations have to be performed on the different thread I have to extend AsyncTask. ...
4
votes
2answers
66 views
Why doesn't my function skip trying to resolve to the incompatible template function, and default to resolving to the regular function?
std::string nonSpecStr = "non specialized func";
std::string const nonTemplateStr = "non template func";
class Base {};
class Derived : public Base {};
template <typename T> std::string func(T ...
0
votes
1answer
402 views
Over riding error…Lax… C++ language spec violation maybe?
I have looked at this problem and don't see where the problem is. I'm not an expert at C++ so to me this looks OK. This used to compile without issue the last time I tried.
namespace yaaf {
...
0
votes
1answer
81 views
Using base class protected methods inside overriden (new) function of derived class
I was trying to acomplish something similar to Java "super" call which i thought would be possible in this way :
public ref class base {
public: base(){}
protected: virtual void funct()
{
...
4
votes
3answers
499 views
Implement two functions with the same name but different, non-covariant return types due to multiple abstract base classes
If I have two abstract classes defining a pure virtual function with the same name, but different, non-covariant return types, how can I derive from these and define an implementation for both their ...
2
votes
1answer
659 views
Visual C++ - Overriding non-virtual methods
Let's assume this scenario in Visual C++ 2010:
#include <iostream>
#include <conio.h>
using namespace std;
class Base
{
public:
int b;
void Display()
{
...
4
votes
4answers
99 views
Overwriting JS function by switching files
I know that, once a script has loaded, you can remove the <script> element from the page and the variables/functions will still be there.
Let's say I have two versions of a function, dealing ...
0
votes
3answers
291 views
Example for override function in Perl
Could you please elaborate on override function in Perl. Some simple examples will be great to understand.
2
votes
2answers
84 views
Overriding the << operator using two methods
I have to write these two methods, to print out what is contained within:
ex is an array composed tokenType tk (sorry, trying to save space and avoid posting the whole structs)
Unfortunately, I am ...
4
votes
1answer
282 views
Objective C Method Swizzling using dynamic library
I am trying to learn method swizzling. I have created a program in objective C which just calls a method within its class. Now my I am trying to load a dynamic library using DYLD_INSERT_LIBRARIES so I ...
2
votes
5answers
524 views
Is it possible to override a function in C++ child class without using virtual keyword to the function in parent class which is abstract?
class Parent {
public:
void func1(); // Complete meaningful definition in parent given.
virtual HRESULT func2()=0; // Bcoz of this function Parent class is abstract.
};
class Child: ...
0
votes
3answers
771 views
How to override function with variable number of parameters in javascript?
I want to override jQuery's hide() function on my object. I want it to call my onHide() function and then call original hide().
How to accomplish this?
The simplest code won't pass parameters I ...
5
votes
4answers
1k 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 ...
0
votes
2answers
424 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 ...
1
vote
5answers
402 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 ...
3
votes
1answer
63 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 ...
0
votes
2answers
117 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 ...
5
votes
2answers
390 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 ...
0
votes
1answer
527 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);
...
3
votes
2answers
970 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:
...
1
vote
2answers
125 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 ...
4
votes
1answer
255 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 {
...
10
votes
1answer
319 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 ...
2
votes
1answer
2k 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
405 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 ...
40
votes
5answers
56k views
What is function overloading and overriding in php?
In PHP, what do you mean by function overloading and function overriding. and what is the difference between both of them? couldn't figure out what is the difference between them.
9
votes
3answers
7k 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 ...
3
votes
6answers
3k 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 ...
17
votes
8answers
2k 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 ...
2
votes
6answers
2k 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 ...


