I am asking how to implement the virtual function in the javascript like C#, let's say
- I have a base class A
- I also have a derived class named B
- The class A has a function named virtualFunction, this is supposed to be a virtual function like in C#, this can be overridden in the derived class B
- The function will be called to execute inside the constructor of the base class, A. If the function is overridden in B, B's one will be invoked otherwise A's one will be invoked
With this example below, I want to get a 'B' alert, not the 'A'.
function A() {
this.virtualFunction();
}
A.prototype.virtualFunction = function() {
alert('A');
};
//-------------------------------------
function B() {}
B.prototype = new A();
B.prototype.virtualFunction = function() {
alert('B');
};
var b = new B();
If we invoke the function after instanced, like this, then it is okay, but I need "inside the constructor"
var b = new B();
b.virtualFunction();