473,699 Members | 2,470 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Multi Inherence

Is there a way to overpass the impossibility of VN.NET to accept the multi
heritage, that is to allow a class to inherit from TWO mother classes ?

--
Bernard Bourée
be*****@bouree. net
Nov 21 '05 #1
27 2204
"Bernard Bourée" <be*****@bouree .net> schrieb:
Is there a way to overpass the impossibility of VN.NET to accept the multi
heritage, that is to allow a class to inherit from TWO mother classes ?


Not directly, but you can go the delegation way that was used in VB6 to
archieve implementation inheritance.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #2
No.

You will have to achieve what you want with inheriting from 1 and using
interfaces. Or having your class contain an instance of another as a
private member, and forwarding method calls to that object (if that can work
for your situation).

"Bernard Bourée" <be*****@bouree .net> wrote in message
news:eF******** *****@TK2MSFTNG P11.phx.gbl...
Is there a way to overpass the impossibility of VN.NET to accept the multi
heritage, that is to allow a class to inherit from TWO mother classes ?

--
Bernard Bourée
be*****@bouree. net

Nov 21 '05 #3
>> Is there a way to overpass the impossibility of VN.NET to accept the
multi
heritage, that is to allow a class to inherit from TWO mother classes ?


Not directly, but you can go the delegation way that was used in VB6 to
archieve implementation inheritance.


Here's a bizarre idea from left field... C++ can do multiple inheritance.
Could he do it via C++ / Managed Extensions and then use it from VB?
--
Peace & happy computing,

Mike Labosh, MCSD
"I have no choice but to believe in free will."
Nov 21 '05 #4
JD
C++ can do multiple inheritance, Managed C++ cannot.
"Mike Labosh" <ml*****@hotmai l.com> wrote in message
news:%2******** ********@TK2MSF TNGP15.phx.gbl. ..
Is there a way to overpass the impossibility of VN.NET to accept the
multi
heritage, that is to allow a class to inherit from TWO mother classes ?


Not directly, but you can go the delegation way that was used in VB6 to
archieve implementation inheritance.


Here's a bizarre idea from left field... C++ can do multiple inheritance.
Could he do it via C++ / Managed Extensions and then use it from VB?
--
Peace & happy computing,

Mike Labosh, MCSD
"I have no choice but to believe in free will."

Nov 21 '05 #5
Herfried

Can you tell me more about delegation or some links ?

Thanks
--
Bernard Bourée
be*****@bouree. net
"Herfried K. Wagner [MVP]" <hi************ ***@gmx.at> a écrit dans le
message de news:eO******** ******@TK2MSFTN GP09.phx.gbl...
"Bernard Bourée" <be*****@bouree .net> schrieb:
Is there a way to overpass the impossibility of VN.NET to accept the multi heritage, that is to allow a class to inherit from TWO mother classes ?


Not directly, but you can go the delegation way that was used in VB6 to
archieve implementation inheritance.

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #6
Marina

Do you know where I can find an example?

Thanks

--
Bernard Bourée
be*****@bouree. net
"Marina" <so*****@nospam .com> a écrit dans le message de
news:O9******** ******@TK2MSFTN GP10.phx.gbl...
No.

You will have to achieve what you want with inheriting from 1 and using
interfaces. Or having your class contain an instance of another as a
private member, and forwarding method calls to that object (if that can work for your situation).

"Bernard Bourée" <be*****@bouree .net> wrote in message
news:eF******** *****@TK2MSFTNG P11.phx.gbl...
Is there a way to overpass the impossibility of VN.NET to accept the multi heritage, that is to allow a class to inherit from TWO mother classes ?

--
Bernard Bourée
be*****@bouree. net


Nov 21 '05 #7

"Bernard Bourée" <be*****@bouree .net> wrote
Is there a way to overpass the impossibility of VN.NET to accept the multi
heritage, that is to allow a class to inherit from TWO mother classes ?


If there was a often used need for multiple inheritance, then MS would have
probably found a way to include it. Evidently they decided there wasn't
an absolute need that would be common enough for the functionality.

Perhaps if you describe what you want to do, someone can explain how
to do that within the confines of the language you are using....

LFS

Nov 21 '05 #8
Bernard,
While Microsoft's .NET programming languages do not provide
multiple-inheritence they do provide ways to implement multiple-inheritance
like behavior.

There are other .NET programming languages that do support
multiple-inheritance:

Haskell.NET (HUGS98) is Haskell as a .NET programming language that allows
multiple-inheritance.

Eifel for .NET is another .NET programming language that allows
multiple-inhieritance:

http://msdn.microsoft.com/library/de...pdc_eiffel.asp
--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com
"Bernard Bourée" <be*****@bouree .net> wrote in message
news:eF******** *****@TK2MSFTNG P11.phx.gbl...
Is there a way to overpass the impossibility of VN.NET to accept the multi
heritage, that is to allow a class to inherit from TWO mother classes ?

--
Bernard Bourée
be*****@bouree. net

Nov 21 '05 #9
"Bernard Bourée" <be*****@bouree .net> schrieb:
Can you tell me more about delegation or some links ?


Sample (untested):

\\\
Public Interface IB
Sub Goo()
End Interface

Public Interface IC
Sub Foo()
End Interface

Public Class A
Implements IB, IC

Private m_IB As IB
Private m_IC As IC

Public Sub New(ByVal IBImpl As IB, ByVal ICImpl As IC)
m_IB = IBImpl
m_IC = ICImpl
End Sub

Public Sub Goo() Implements IB.Goo
m_IB.Goo()
End Sub

Public Sub Foo() Implements IC.Foo
m_IC.Foo()
End Sub
End Class

Public Class B
Implements IB

...
End Class

Public Class C
Implements IC

...
End Class
..
..
..
Dim f As New A(New B(), New C())
///

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 21 '05 #10

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

Similar topics

37
4887
by: ajikoe | last post by:
Hello, Is anyone has experiance in running python code to run multi thread parallel in multi processor. Is it possible ? Can python manage which cpu shoud do every thread? Sincerely Yours, Pujo
12
3876
by: * ProteanThread * | last post by:
but depends upon the clique: http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&threadm=954drf%24oca%241%40agate.berkeley.edu&rnum=2&prev=/groups%3Fq%3D%2522cross%2Bposting%2Bversus%2Bmulti%2Bposting%2522%26ie%3DUTF-8%26oe%3DUTF-8%26hl%3Den ...
0
3777
by: frankenberry | last post by:
I have multi-page tiff files. I need to extract individual frames from the multi-page tiffs and save them as single-page tiffs. 95% of the time I receive multi-page tiffs containing 1 or more black and white CCITT4 compressed files (frames) inside the tiff. Every now and then I receive a mixture of black and white CCITT4 and JPEG compressed files, and sometimes just multi-page tiffs with JPEG only. The code runs great when dealing with the...
6
8168
by: cody | last post by:
What are multi file assemblies good for? What are the advantages of using multiple assemblies (A.DLL+B.DLL) vs. a single multi file assembly (A.DLL+A.NETMODULE)?
4
17869
by: mimmo | last post by:
Hi! I should convert the accented letters of a string in the correspondent letters not accented. But when I compile with -Wall it give me: warning: multi-character character constant Do the problem is the charset? How I can avoid this warning? But the worst thing isn't the warning, but that the program doesn't work! The program execute all other operations well, but it don't print the converted letters: for example, in the string...
5
5988
by: Shane Story | last post by:
I can seem to get the dimensions of a frame in a multiframe tiff. After selecting activeframe, the Width/Height is still really much larger than the page's actual dimensions. When I split a TIFF to several PNG files this causes a problem, becuase the resulting image is (the page to the far left and a lot of black space surrounding it and a filesize that is larger than needed. Any ideas?
5
5761
by: bobwansink | last post by:
Hi, I'm relatively new to programming and I would like to create a C++ multi user program. It's for a project for school. This means I will have to write a paper about the theory too. Does anyone know a good place to start looking for some theory on the subject of multi user applications? I know only bits and pieces, like about transactions, but a compendium of possible approches to multi user programming would be very appreciated!
0
2326
by: Sabri.Pllana | last post by:
We apologize if you receive multiple copies of this call for papers. *********************************************************************** 2008 International Workshop on Multi-Core Computing Systems (MuCoCoS'08) Barcelona, Spain, March 4 - 7, 2008; in conjunction with CISIS'08. <http://www.par.univie.ac.at/~pllana/mucocos08> *********************************************************************** Context
1
9309
by: mknoll217 | last post by:
I am recieving this error from my code: The multi-part identifier "PAR.UniqueID" could not be bound. The multi-part identifier "Salary.UniqueID" could not be bound. The multi-part identifier "PAR.UniqueID" could not be bound. The multi-part identifier "PAR.PAR_Status" could not be bound. The multi-part identifier "Salary.New_Salary" could not be bound. The multi-part identifier "Salary.UniqueID" could not be bound. The multi-part...
0
8705
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8628
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9054
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8899
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7785
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6550
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4391
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
2362
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2016
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.