473,396 Members | 1,913 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Need help: about OOP inheritance/abstract class

Tee
Hi,

I have a base usercontrol with a method (blank method, no code), I have
another few usercontrols that will inherit this base usercontrol, but I want
to force all the usercontrol that inheriting this base usercontrol to
override the method with its own code. How do I do it?

I have tried to make the base usercontrol an abstract class (mustinherits +
mustoverrides), this works, but all the usercontrols that inherit it will
not able to open in VS designer because of inherting an abstract class.

I have also tried to use interface, this works as well, but I can't force
those usercontrols that inherit base usercontrol MUST have the interface.

Anyone has a solution for this?
Thanks,
Tee
Nov 16 '05 #1
11 3351
Tee wrote:
Hi,

I have a base usercontrol with a method (blank method, no code), I have
another few usercontrols that will inherit this base usercontrol, but I
want to force all the usercontrol that inheriting this base usercontrol to
override the method with its own code. How do I do it?


If you are going to /force/ them to override it ( polymorphism ) why have it
in the first place?

You should define an *interface* with a stub method and force them to
implement it.

I do this in one of my web service applications. There are two interfaces
and a base abstract class. The interface accounts for methods that must
be implemented in the derived classes, but which have no default method in
the abstract class. So each derived class has one abstract class and two
interfaces to inherit from.
--
http://texeme.com
Textcasting Technology
Incognito Blog
http://incognito.texeme.com

Nov 16 '05 #2
I haven't tried, but have you tried to use inheirtance AND interface
together?

i.e.
* base class with stuff that should be inherited as-is
* interface with the definition of the method that the inheriting
classes should implement/override
* inheriting/implementing classes: they inherit from the base class,
AND they implement the interface.

The children should then get all that the base class provides and Be
Forced to implement the method(s) defined in the interface.
HTH,
F.O.R.

Nov 16 '05 #3
Tee
I have tried it.
The children should then get all that the base class provides and Be
Forced to implement the method(s) defined in the interface.
HTH,
F.O.R.
The base class that implements the interface will automatically has the
method in the class (just an empty method, no code).
And yes, the children get all the base class provided, and they inherit the
empty method as well ... the problem is it won't force the children to
overrides it.
Thanks.
"Olorin" <fr*************@gmail.com> wrote in message
news:11**********************@c13g2000cwb.googlegr oups.com... I haven't tried, but have you tried to use inheirtance AND interface
together?

i.e.
* base class with stuff that should be inherited as-is
* interface with the definition of the method that the inheriting
classes should implement/override
* inheriting/implementing classes: they inherit from the base class,
AND they implement the interface.

The children should then get all that the base class provides and Be
Forced to implement the method(s) defined in the interface.
HTH,
F.O.R.

Nov 16 '05 #4
This is not just a problem with user controls; it is also a problem
with inheriting Forms.

You cannot use an abstract base class for the reasons you mentioned.
There is no way around it at present.

The best you can do is write the methods in the base class to throw a
NotImplementedException. Then if the child class does not override them
it will blow up at run time. There is no way to enforce the override
via a compile-time check.

Nov 16 '05 #5
Why not just(shortened):

abstract class Abstract
{
public abstract void MustOverrideThisAbstractMethod ( ) ;
}

class Concrete : Abstract
{
override public void MustOverrideThisAbstractMethod ( )
{
//Implement something here.
}

}

Declaring a method as abstract within an abstract class means the base class
will demand an implementation of that method from the concrete derived
class.
--
Regards,
Dennis JD Myrén
Oslo Kodebureau
"Tee" <th*@streamyx.com> wrote in message
news:un*************@TK2MSFTNGP10.phx.gbl...
Hi,

I have a base usercontrol with a method (blank method, no code), I have
another few usercontrols that will inherit this base usercontrol, but I
want
to force all the usercontrol that inheriting this base usercontrol to
override the method with its own code. How do I do it?

I have tried to make the base usercontrol an abstract class (mustinherits
+
mustoverrides), this works, but all the usercontrols that inherit it will
not able to open in VS designer because of inherting an abstract class.

I have also tried to use interface, this works as well, but I can't force
those usercontrols that inherit base usercontrol MUST have the interface.

Anyone has a solution for this?
Thanks,
Tee

Nov 16 '05 #6
Tee
Hi Dennis,

See my previous post:
I have tried to make the base usercontrol an abstract class (mustinherits + mustoverrides), this works, but all the usercontrols that inherit it will
not able to open in VS designer because of inherting an abstract class.

This just won't work on forms or usercontrols ... it won't effect runtime,
but it's trouble enough if you can't open it in VS Designer.
Thanks,
Tee
"Dennis Myrén" <de****@oslokb.no> wrote in message
news:dN*******************@news4.e.nsc.no... Why not just(shortened):

abstract class Abstract
{
public abstract void MustOverrideThisAbstractMethod ( ) ;
}

class Concrete : Abstract
{
override public void MustOverrideThisAbstractMethod ( )
{
//Implement something here.
}

}

Declaring a method as abstract within an abstract class means the base class will demand an implementation of that method from the concrete derived
class.
--
Regards,
Dennis JD Myrén
Oslo Kodebureau
"Tee" <th*@streamyx.com> wrote in message
news:un*************@TK2MSFTNGP10.phx.gbl...
Hi,

I have a base usercontrol with a method (blank method, no code), I have
another few usercontrols that will inherit this base usercontrol, but I
want
to force all the usercontrol that inheriting this base usercontrol to
override the method with its own code. How do I do it?

I have tried to make the base usercontrol an abstract class (mustinherits +
mustoverrides), this works, but all the usercontrols that inherit it will not able to open in VS designer because of inherting an abstract class.

I have also tried to use interface, this works as well, but I can't force those usercontrols that inherit base usercontrol MUST have the interface.
Anyone has a solution for this?
Thanks,
Tee


Nov 16 '05 #7
Sorry, i should probably read the posts fully before replying them.

I had a bunch of webforms once which all needed common extra features in
order
to provide the functionality of a step in a wizard.
There was no way i could force those webforms to implement my custom
interface
in addition to inherit System.Web.UI.Page.
But i myself though, knew which ones of them should provide that
functionality,
and had them implement that interface.
class WizardStep1 : System.Web.UI.Page, IWizardStep

--
Regards,
Dennis JD Myrén
Oslo Kodebureau
"Tee" <th*@streamyx.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Hi Dennis,

See my previous post:
I have tried to make the base usercontrol an abstract class (mustinherits
+

mustoverrides), this works, but all the usercontrols that inherit it will
not able to open in VS designer because of inherting an abstract class.

This just won't work on forms or usercontrols ... it won't effect runtime,
but it's trouble enough if you can't open it in VS Designer.
Thanks,
Tee
"Dennis Myrén" <de****@oslokb.no> wrote in message
news:dN*******************@news4.e.nsc.no...
Why not just(shortened):

abstract class Abstract
{
public abstract void MustOverrideThisAbstractMethod ( ) ;
}

class Concrete : Abstract
{
override public void MustOverrideThisAbstractMethod ( )
{
//Implement something here.
}

}

Declaring a method as abstract within an abstract class means the base

class
will demand an implementation of that method from the concrete derived
class.
--
Regards,
Dennis JD Myrén
Oslo Kodebureau
"Tee" <th*@streamyx.com> wrote in message
news:un*************@TK2MSFTNGP10.phx.gbl...
> Hi,
>
> I have a base usercontrol with a method (blank method, no code), I have
> another few usercontrols that will inherit this base usercontrol, but I
> want
> to force all the usercontrol that inheriting this base usercontrol to
> override the method with its own code. How do I do it?
>
> I have tried to make the base usercontrol an abstract class (mustinherits > +
> mustoverrides), this works, but all the usercontrols that inherit it will > not able to open in VS designer because of inherting an abstract class.
>
> I have also tried to use interface, this works as well, but I can't force > those usercontrols that inherit base usercontrol MUST have the interface. >
> Anyone has a solution for this?
>
>
> Thanks,
> Tee
>
>



Nov 16 '05 #8

"Bruce Wood" <br*******@canada.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
This is not just a problem with user controls; it is also a problem
with inheriting Forms.

You cannot use an abstract base class for the reasons you mentioned.
There is no way around it at present.

The best you can do is write the methods in the base class to throw a
NotImplementedException. Then if the child class does not override them
it will blow up at run time. There is no way to enforce the override
via a compile-time check.

Well there is one workaround which I've used. You can use use compile time
constants to declare your class such that the MustInherit attribute is only
enforced in Release builds e.g.

#If Debug then
Public MyClass
#Else
Public MustInherit MyClass
#End if
....

Any methods that should be overridden can be given a default implementation
in the debug build (to write a message to the console or throw an exception)
e.g.

....
#If Debug then
Public Sub MethodThatMustBeOverriden()
Debug.Fail("Method not overridden")
End Sub
#Else
Public MustOverride Sub MethodThatMustBeOverriden()
#End if

This has worked OK for me in the past.

Hope this helps,

Nick Hall


Nov 16 '05 #9
> > The children should then get all that the base class provides and
Be
Forced to implement the method(s) defined in the interface.
HTH,
F.O.R.
The base class that implements the interface will automatically has

the method in the class (just an empty method, no code).
And yes, the children get all the base class provided, and they inherit the empty method as well ... the problem is it won't force the children to overrides it.


I didn't say that the base class should implement the interface ;-)
ANd, yes I now realize that the solution I proposed would have the draw
back of the
base class not implementing the method(s) in your interface. SO it
might or might not work for you.

HTH,
F.O.R.

Nov 16 '05 #10
Very clever. Perhaps I'll try that on my projects next time.

Nov 16 '05 #11
Tee
Very great idea, thanks!
"Nick Hall" <ni***@aslan.nospam.co.uk> wrote in message
news:un**************@TK2MSFTNGP15.phx.gbl...

"Bruce Wood" <br*******@canada.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
This is not just a problem with user controls; it is also a problem
with inheriting Forms.

You cannot use an abstract base class for the reasons you mentioned.
There is no way around it at present.

The best you can do is write the methods in the base class to throw a
NotImplementedException. Then if the child class does not override them
it will blow up at run time. There is no way to enforce the override
via a compile-time check.
Well there is one workaround which I've used. You can use use compile

time constants to declare your class such that the MustInherit attribute is only enforced in Release builds e.g.

#If Debug then
Public MyClass
#Else
Public MustInherit MyClass
#End if
...

Any methods that should be overridden can be given a default implementation in the debug build (to write a message to the console or throw an exception) e.g.

...
#If Debug then
Public Sub MethodThatMustBeOverriden()
Debug.Fail("Method not overridden")
End Sub
#Else
Public MustOverride Sub MethodThatMustBeOverriden()
#End if

This has worked OK for me in the past.

Hope this helps,

Nick Hall

Nov 16 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
by: John Perks and Sarah Mount | last post by:
Trying to create the "lopsided diamond" inheritance below: >>> class B(object):pass >>> class D1(B):pass >>> class D2(D1):pass >>> class D(D1, D2):pass Traceback (most recent call last): File...
8
by: Shawn Casey | last post by:
Consider the following code: interface IBase { virtual void BaseFunction() = 0; }; interface IDerived : public IBase { virtual void DerivedFunction() = 0;
15
by: Tee | last post by:
Hi, I have a base usercontrol with a method (blank method, no code), I have another few usercontrols that will inherit this base usercontrol, but I want to force all the usercontrol that...
2
by: Bonj | last post by:
Hello Can anyone assist with the following class hierarcy problem? I have a series of window classes, the object model currently being as such: Window / | \ / | \...
6
by: Nak | last post by:
Hi there, I'm having issues inheriting from a base form of mine. The base form contains no user controls but quite a few properties, events and overridable methods. When attempting to...
7
by: shintu | last post by:
Hi, For the following code snippet, the compiler complains for "mi *mi1=new mi;" statement //******************************************************* #include <iostream> using namespace std;...
9
by: relient | last post by:
I am trying to understand the code below but I need some affirmation of the following first: The reason I inherit the "Base" class method implementation instead of the "Derived" class method in the...
60
by: Shawnk | last post by:
Some Sr. colleges and I have had an on going discussion relative to when and if C# will ever support 'true' multiple inheritance. Relevant to this, I wanted to query the C# community (the...
5
by: superheathen | last post by:
Hi, While I think I have a reasonable grasp of C++ in general, I've never really used it more than a convenient C. as such, I'm finding very basic OO confusing, not so much the concept, but how...
2
by: mmcgarry.work | last post by:
Hi, I would like to follow Stroustrup's advice of separating an object interface (abstract class) from an object implementation (concrete class), See Section 15.2.5 in Stroustrup 3rd Edition. ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.