473,503 Members | 1,692 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Interface vs Struct

I am new to object oriented design. I am using VS 2005. I was going to
create three classes then have those classes inherited by one class but c#
does not support multiple inheritance. My three base classes would have
properties only and no methods. What would be best to use in this case an
interface or struct or something else?

When adding items to the project I did not see a template for struct or for
an interface, but there is a template for class (.cs).

Originally I had planned to have three base classes:
Owner class, Property Class and Value Class

And a PropertyHistory class that would inherit all the base classes and
PropertyHistory could be added to a collection so I could iterate through it
and sort it.

I wanted the base classes to be reused separately in other areas of the
application.

What is the best way to do this?

--
Happy In SoAz
Jun 27 '08 #1
7 1838
SoAzAppDever wrote:
I am new to object oriented design. I am using VS 2005. I was going to
create three classes then have those classes inherited by one class but c#
does not support multiple inheritance. My three base classes would have
properties only and no methods. What would be best to use in this case an
interface or struct or something else?
Neither interface or struct solves that problem.

I think you need to make the one class have a reference to the
3 "base" classes instead of inheriting.

Arne
Jun 27 '08 #2
So In the PropertyHistory class I could pass in the three base classes like so

class PropertyHistory(Owner oObj, Property oProp, Value oVal)
{
do stuff
}

?

--
Happy In SoAz
"Arne VajhĂžj" wrote:
SoAzAppDever wrote:
I am new to object oriented design. I am using VS 2005. I was going to
create three classes then have those classes inherited by one class but c#
does not support multiple inheritance. My three base classes would have
properties only and no methods. What would be best to use in this case an
interface or struct or something else?

Neither interface or struct solves that problem.

I think you need to make the one class have a reference to the
3 "base" classes instead of inheriting.

Arne
Jun 27 '08 #3
"SoAzAppDever" <So**********@discussions.microsoft.comwrote in message
news:3B**********************************@microsof t.com...
So In the PropertyHistory class I could pass in the three base classes
like so

class PropertyHistory(Owner oObj, Property oProp, Value oVal)
{
do stuff
}

?

"Arne Vajhűj" wrote:
>SoAzAppDever wrote:
I am new to object oriented design. I am using VS 2005. I was going
to
create three classes then have those classes inherited by one class but
c#
does not support multiple inheritance. My three base classes would
have
properties only and no methods. What would be best to use in this case
an
interface or struct or something else?

Neither interface or struct solves that problem.

I think you need to make the one class have a reference to the
3 "base" classes instead of inheriting.

Arne
Arne means that since PropertyHistory is not a Property, nor is it a Owner,
nor is it a Value, it won't inherit from any of them. An instance of
PropertyHistory will have references to an instance of Property, an instance
of Owner, and an instance of Value.

AHS
Jun 27 '08 #4
I am not sure I understand. Can you show me in code? What is have done is
the following:

public class ParcelHistory
{
//members
private Owner _owner;
private Property _property;
private Value _value;
//contructor
public PropertyHistory(Owner owner, Property property, Value value)
{
_owner = owner;
_property = property;
_value = value;
}

//properties
public Owner HistoryOwner
{
get { return _owner; }
}

public Property HistoryProperty
{
get { return _property; }
}

public Value HistoryValue
{
get { return _value; }
}

}
--
Happy In SoAz
"Arved Sandstrom" wrote:
"SoAzAppDever" <So**********@discussions.microsoft.comwrote in message
news:3B**********************************@microsof t.com...
So In the PropertyHistory class I could pass in the three base classes
like so

class PropertyHistory(Owner oObj, Property oProp, Value oVal)
{
do stuff
}

?

"Arne VajhĂžj" wrote:
SoAzAppDever wrote:
I am new to object oriented design. I am using VS 2005. I was going
to
create three classes then have those classes inherited by one class but
c#
does not support multiple inheritance. My three base classes would
have
properties only and no methods. What would be best to use in this case
an
interface or struct or something else?

Neither interface or struct solves that problem.

I think you need to make the one class have a reference to the
3 "base" classes instead of inheriting.

Arne

Arne means that since PropertyHistory is not a Property, nor is it a Owner,
nor is it a Value, it won't inherit from any of them. An instance of
PropertyHistory will have references to an instance of Property, an instance
of Owner, and an instance of Value.

AHS
Jun 27 '08 #5
Arved Sandstrom wrote:
"SoAzAppDever" <So**********@discussions.microsoft.comwrote in message
news:3B**********************************@microsof t.com...
>"Arne Vajhűj" wrote:
>>SoAzAppDever wrote:
I am new to object oriented design. I am using VS 2005. I was going
to
create three classes then have those classes inherited by one class but
c#
does not support multiple inheritance. My three base classes would
have
properties only and no methods. What would be best to use in this case
an
interface or struct or something else?
Neither interface or struct solves that problem.

I think you need to make the one class have a reference to the
3 "base" classes instead of inheriting.
So In the PropertyHistory class I could pass in the three base classes
like so

class PropertyHistory(Owner oObj, Property oProp, Value oVal)
{
do stuff
}

?

Arne means that since PropertyHistory is not a Property, nor is it a Owner,
nor is it a Value, it won't inherit from any of them. An instance of
PropertyHistory will have references to an instance of Property, an instance
of Owner, and an instance of Value.
Yup.

3 x "has a" instead of the invalid 3 x "is a".

Arne
Jun 27 '08 #6
As Arne suggest..

Inheritance represents an IS_A relationship from a generalization to a
specialization. Containment represents a HAS_A relationship between the
whole and a part. So a car IS_A motorized vehicle, but HAS_A radio. The
two
relationships can be expressed in code (text view) thusly:

class Radio
{
...
}
class Vehicle
{
...
}
class Car : Vehicle
{
Radio r= new Radio();
}

Regards,
Jeff

*** Sent via Developersdex http://www.developersdex.com ***
Jun 27 '08 #7
Thank you that is very helpful!
--
Happy In SoAz
"Jeff Louie" wrote:
As Arne suggest..

Inheritance represents an IS_A relationship from a generalization to a
specialization. Containment represents a HAS_A relationship between the
whole and a part. So a car IS_A motorized vehicle, but HAS_A radio. The
two
relationships can be expressed in code (text view) thusly:

class Radio
{
...
}
class Vehicle
{
...
}
class Car : Vehicle
{
Radio r= new Radio();
}

Regards,
Jeff

*** Sent via Developersdex http://www.developersdex.com ***
Jun 27 '08 #8

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

Similar topics

17
2256
by: Zytan | last post by:
Aren't all classes interfaces? What constitutes an interface (and with it, the "I" prefix distinction)? Zytan
3
1687
by: goodmen | last post by:
I think the boost::concept_check is too complex. Here is my solution about static interface and concept. The static interface can be used as function param. It is just a proxy of the real...
1
2714
by: yadolov | last post by:
I have COM-object with Iface interface: typedef struct { .... } TStruct; interface Iface : IUnknown {
6
2153
by: Chris Carlen | last post by:
Hi: I have an embedded system, platform: TI TMS320F2812 32-bit integer DSP. A module (.c file) contains external (to the funcs in that module) variables which are used to affect the operation...
1
2746
by: recherche | last post by:
Hola! I tried the following public implementation of interface indexer by struct (Code Snippet 1) in private and explicit implementation by struct (Code Snippet 2) but in vain. Please help! ...
0
7199
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
7273
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
7322
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
7451
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5572
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,...
1
5000
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3161
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1501
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
731
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.