I'm trying to make a spcial add-ons for my application. I need to override some methods of a class without editing the class file.
Here is a scheme:
class A
{
public void method1()
{
// Do something here
}
public int method2()
{
// Do something
}
}
Now from my class B, I want to override the method1 func from the class A, and force the A class to use my new method.
class B
{
public void method1()
{
Do something
}
}
I want to update my class A code without editing the A class. Is that possible?
Thanks.
A a = new A(); a.method1()to callB.method1? – Oli Charlesworth Apr 6 '12 at 11:50A, the best you can do is extend from classAand change the behavior in classB. Then call all of your methods on classBobjects. – Hunter McMillen Apr 6 '12 at 11:51