Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
240 views
in Technique[技术] by (71.8m points)

c# - Override method from instance of the class

I have a merly simple question, but seems cant find an answer for it, I want to know if its possible to override a method from a instance class structore would look like this:

public class A : baseA    
{
    public virtual void methodA()
    {
    }
}

public class B : baseB    
{
    public void method B()
    {
         var ClassA = new A();
    }

    /* Now Is there some sort of overide like */
    public override methodA()
    {
      //Do stuff
    }
}

And those classes do not inherit from each other, to make it more difficult. Now if this sort of construction is possible in c#?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

No. You cannot override a class's behavior if you don't inherit from it.

The override modifier is required to extend or modify the abstract or virtual implementation of an inherited method, property, indexer, or event.

Class B must inherit from class A in order to do so.

public class A
{
    public virtual void methodA()
    {
    }
}

public class B : A
{
    public void methodB()
    {
        var ClassA = new A();
    }

    public override void methodA()
    {
        //Do stuff
    }
}

Check MSDN for more details:

An override method provides a new implementation of a member that is inherited from a base class. The method that is overridden by an override declaration is known as the overridden base method. The overridden base method must have the same signature as the override method


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...