Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a base class which uses a variable in ones of its methods and also a derived class that needs the same vaiable in its methods. Below are the details

abstract class BaseClass
{
 protected Transition transition;
 public event EventHandler ActionComplete;
 private string abc;

 Public string ABC
 { 
    get{ return abc;}
    set { abc = value;} 
 }

 public void TransitionState(BaseClass obj)
 {
    ActionComplete(this, null);
 }
 public abstract void RequestSomeAction(Transition obj);

}

internal class DerivedClass : BaseClass
{
    //do i need to create transition variable again here
    internal new Transition transition;

    //this  parameter's value (here obj) should be assigned to the base class,

    public override void RequestSomeAction(Transition obj)
    {        
        //is below code correct. 
        stateTransition = obj;
        base.transition= transition;
    }

}
share|improve this question
1  
You need to work on accepting some of your answers. – asawyer Jun 8 '11 at 13:41

2 Answers

Why the new transition variable and base.transition? If you make a variabele protected in the 'base class' you can just use it directly in the 'child class' that extends that class!?

share|improve this answer
This means there is no need for declaring internal new Transition transition;i dont need to call base.transition? i can just call transition? – myWorld Jun 8 '11 at 13:58
in baseclass, transition is declared protected already – myWorld Jun 8 '11 at 13:59
@starz26 If you let DerivedClass extend BaseClass that has the protected variable transition in it, the DerivedClass has instant access to that variable. This means you can just use (this.)transition in the DerivedClass! – Vincent Koeman Jun 8 '11 at 14:04
What if i have a property ABC in the BaseClass and how do child class access tht. is it with the name of the property (ABC) or with the variable (this.abc)? – myWorld Jun 9 '11 at 9:07
this.ABC == ABC ??? The 'this' keyword is never really necessary except when it is used on its own – Vincent Koeman Jun 9 '11 at 17:26
show 1 more comment

First if you don't need to redeclare the variable, don't. You can just use the protected property.

this.transition

If you need 2 copies of the variable with the same name (i can't think of any case when you would need this) then you are technically 'hiding' versus overridding so you could do:

base.transition

or the same

((BaseClass)this).transition

MSDN on base.

share|improve this answer
Hiding is really bad! – Vincent Koeman Jun 8 '11 at 14:05
I'm not promoting it! I was just facilitating, sometimes people want to do bad things. :) – Nix Jun 8 '11 at 14:51
Facilitating crime is also a crime :P – Vincent Koeman Jun 8 '11 at 14:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.