473,395 Members | 2,443 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,395 software developers and data experts.

VB.NET implementing an interface question

Hi all, when I write the class below

Private Class employee

End Class
and then add the line "Implements IVF" which is an interface I have
written, the IDE modifies my code to display

Private Class employee
Implements IVF
Public Function getPerson() As personDetails Implements
IVCO.getPerson
End Function
End Class
The interface defines a single function returning type personDetails.

My question is why is the function declaration in my private class

Public Function getPerson() As personDetails Implements
IVCO.getPerson

and just not

Public Function getPerson() As personDetails

because I already have the "Implements IVF" in the class header. In
other classes I have written, that also implement an interface, I
don't have this "Implements IVCO.getPerson" bit and I'm not sure why,
and if I remove it the compiler complains.

I am running VS2003, .Net runtime 1.1, on a WinXP home computer.

Thank you
Colin
BTW: my interface looks like this and is a separate class/file in my
project.
Public Interface IVF
Function getPerson() As personDetails
End Interface
Nov 20 '05 #1
5 1651
IVCO must be the name of the Module/Class where the definition of the
function is. The IDE will put the stubs in automatically for you. Then you
must implement the interface.

Regards - OHM

Colin McGuire wrote:
Hi all, when I write the class below

Private Class employee

End Class
and then add the line "Implements IVF" which is an interface I have
written, the IDE modifies my code to display

Private Class employee
Implements IVF
Public Function getPerson() As personDetails Implements
IVCO.getPerson
End Function
End Class
The interface defines a single function returning type personDetails.

My question is why is the function declaration in my private class

Public Function getPerson() As personDetails Implements
IVCO.getPerson

and just not

Public Function getPerson() As personDetails

because I already have the "Implements IVF" in the class header. In
other classes I have written, that also implement an interface, I
don't have this "Implements IVCO.getPerson" bit and I'm not sure why,
and if I remove it the compiler complains.

I am running VS2003, .Net runtime 1.1, on a WinXP home computer.

Thank you
Colin
BTW: my interface looks like this and is a separate class/file in my
project.
Public Interface IVF
Function getPerson() As personDetails
End Interface


Regards - OHM# On**********@BTInternet.com
Nov 20 '05 #2
Sorry that should read.

IVCO must be the name of the Module/Class where the delaration of the
function is.

Regards - OHM#
One Handed Man [ OHM# ] wrote:
IVCO must be the name of the Module/Class where the definition of the
function is. The IDE will put the stubs in automatically for you.
Then you must implement the interface.

Regards - OHM

Colin McGuire wrote:
Hi all, when I write the class below

Private Class employee

End Class
and then add the line "Implements IVF" which is an interface I have
written, the IDE modifies my code to display

Private Class employee
Implements IVF
Public Function getPerson() As personDetails Implements
IVCO.getPerson
End Function
End Class
The interface defines a single function returning type personDetails.

My question is why is the function declaration in my private class

Public Function getPerson() As personDetails Implements
IVCO.getPerson

and just not

Public Function getPerson() As personDetails

because I already have the "Implements IVF" in the class header. In
other classes I have written, that also implement an interface, I
don't have this "Implements IVCO.getPerson" bit and I'm not sure why,
and if I remove it the compiler complains.

I am running VS2003, .Net runtime 1.1, on a WinXP home computer.

Thank you
Colin
BTW: my interface looks like this and is a separate class/file in my
project.
Public Interface IVF
Function getPerson() As personDetails
End Interface


Regards - OHM# On**********@BTInternet.com


Regards - OHM# On**********@BTInternet.com
Nov 20 '05 #3
* co***********@lycos.co.uk (Colin McGuire) scripsit:
Private Class employee

End Class
and then add the line "Implements IVF" which is an interface I have
written, the IDE modifies my code to display

Private Class employee
Implements IVF
Public Function getPerson() As personDetails Implements
IVCO.getPerson
End Function
End Class
The interface defines a single function returning type personDetails.

My question is why is the function declaration in my private class

Public Function getPerson() As personDetails Implements
IVCO.getPerson

and just not

Public Function getPerson() As personDetails

because I already have the "Implements IVF" in the class header. In
other classes I have written, that also implement an interface, I
don't have this "Implements IVCO.getPerson" bit and I'm not sure why,
and if I remove it the compiler complains.


In VB.NET you need to explicitly specify the 'Implements...'. There is
no implicit implementation like in C#. Therefore, in VB.NET, more than
one method can implement a method defined in an interface, and the
method implementing the method of the interface doesn't necessarily have
to have the same name as defined in the interface.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #4
Colin,
In addition to the other comments:

Your example seems to be inconsistent!

Given:
Public Class employee

End Class
Public Interface IVF Function getPerson() As personDetails End Interface

When Employee implements the interface you will get:
Public Class employee
Implements IVF
Public Function getPerson() As personDetails Implements
IVF.getPerson
End Function
End Class
Your example has "IVCO.getPerson" which would cause a compile error!

As VB.NET requires the Implements statement in the class to signify that the
class implements the interface, plus it needs the Implements clause on each
method that implements a method of the interface. The Implements clause
allows you to rename and/or hide the method from the normal public
"interface" of the class.

For example you can do: Public Class employee
Implements IVF
Protected Function GetThePersonDetails() As personDetails Implements IVF.getPerson
End Function
End Class
Are you perhaps confusing Implements with Inherits? As Inherits does not use
a clause on each method (function, sub, or property).

Hope this helps
Jay

"Colin McGuire" <co***********@lycos.co.uk> wrote in message
news:ab**************************@posting.google.c om... Hi all, when I write the class below

Private Class employee

End Class
and then add the line "Implements IVF" which is an interface I have
written, the IDE modifies my code to display

Private Class employee
Implements IVF
Public Function getPerson() As personDetails Implements
IVCO.getPerson
End Function
End Class
The interface defines a single function returning type personDetails.

My question is why is the function declaration in my private class

Public Function getPerson() As personDetails Implements
IVCO.getPerson

and just not

Public Function getPerson() As personDetails

because I already have the "Implements IVF" in the class header. In
other classes I have written, that also implement an interface, I
don't have this "Implements IVCO.getPerson" bit and I'm not sure why,
and if I remove it the compiler complains.

I am running VS2003, .Net runtime 1.1, on a WinXP home computer.

Thank you
Colin
BTW: my interface looks like this and is a separate class/file in my
project.
Public Interface IVF
Function getPerson() As personDetails
End Interface

Nov 20 '05 #5
Jay, Herfried, OHM# thanks for your comments. I am on the right track
now and still learning more, which you will notice by me not posting
so many questions :)

Jay - thanks. The IVCO was a typo when converting my real code into
something a lot simpler for posting.

Thank you all again
Colin

"Jay B. Harlow [MVP - Outlook]" <Ja************@msn.com> wrote in message news:<ul**************@TK2MSFTNGP09.phx.gbl>...
Colin,
In addition to the other comments:

Your example seems to be inconsistent!

Given:
Public Class employee

End Class


Public Interface IVF
Function getPerson() As personDetails

End Interface

When Employee implements the interface you will get:
Public Class employee
Implements IVF
Public Function getPerson() As personDetails Implements
IVF.getPerson
End Function
End Class


Your example has "IVCO.getPerson" which would cause a compile error!

As VB.NET requires the Implements statement in the class to signify that the
class implements the interface, plus it needs the Implements clause on each
method that implements a method of the interface. The Implements clause
allows you to rename and/or hide the method from the normal public
"interface" of the class.

For example you can do:
Public Class employee
Implements IVF
Protected Function GetThePersonDetails() As personDetails

Implements
IVF.getPerson
End Function
End Class


Are you perhaps confusing Implements with Inherits? As Inherits does not use
a clause on each method (function, sub, or property).

Hope this helps
Jay

"Colin McGuire" <co***********@lycos.co.uk> wrote in message
news:ab**************************@posting.google.c om...
Hi all, when I write the class below

Private Class employee

End Class
and then add the line "Implements IVF" which is an interface I have
written, the IDE modifies my code to display

Private Class employee
Implements IVF
Public Function getPerson() As personDetails Implements
IVCO.getPerson
End Function
End Class
The interface defines a single function returning type personDetails.

My question is why is the function declaration in my private class

Public Function getPerson() As personDetails Implements
IVCO.getPerson

and just not

Public Function getPerson() As personDetails

because I already have the "Implements IVF" in the class header. In
other classes I have written, that also implement an interface, I
don't have this "Implements IVCO.getPerson" bit and I'm not sure why,
and if I remove it the compiler complains.

I am running VS2003, .Net runtime 1.1, on a WinXP home computer.

Thank you
Colin
BTW: my interface looks like this and is a separate class/file in my
project.
Public Interface IVF
Function getPerson() As personDetails
End Interface

Nov 20 '05 #6

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

Similar topics

6
by: Martyn Lawson | last post by:
Hi, I am currently working as an Analyst on a .NET Web Project using ASP.NET and C#.NET. I have a couple of, at least what should be, quick questions: 1. My understanding of UML says that...
4
by: Frank J. Reashore | last post by:
Hello Everyone, I am implementing a simple interface in C# using Visual Studio .net and was quite surprised to discover that the C# compiler does NOT complain if a method on the interface is not...
4
by: John C | last post by:
I'm new to C#, so just point me at the correct reference material if this question has been answered before. When creating a new class which implements the IDictionary interface, two versions of...
3
by: Frans Bouma | last post by:
Hi, I have a serious problem with VB.NET and a DataTable derived class and I can't figure out how to solve it. I have implemented it in C# where it works perfectly, but I can't port one...
0
by: Yatin Bhuta | last post by:
Hi, I have an interface in vb 6.0. It has a property set member, which takes a parameter by reference. When I try to implement this interface in my vb.net project it gives me an error saying...
2
by: larzeb | last post by:
I receive the following error from the compiler: ScheduledInfo' must implement 'Property AddrLine1() As String' for interface 'ICASSBatch'. Implementing property must have matching...
3
by: needin4mation | last post by:
Just learning about interfaces and had a probably simple question. If a class inherits from an Interface, does this guarantee that the class will have the methods defined in the Interface? I...
6
by: Raj Wall | last post by:
Hi, I am trying to implement the IEqualityComparer interface for a struct so I can use it as the Key for a Dictionary. My struct declaration has: public struct Ring : IEqualityComparer {...
5
by: koonda | last post by:
Hi all, I am a student and I have a project due 20th of this month, I mean May 20, 2007 after 8 days. The project is about creating a Connect Four Game. I have found some code examples on the...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
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...

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.