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

What's the difference between component & a class?

Could someone tell me what's the difference between the two?
Is it that a class is used within an OO language while a component can
be exported between OO languages?
Are there other differences?
Thank you for your help.

Jul 22 '05 #1
4 8019
orangepic333 wrote:
Could someone tell me what's the difference between the two?
A component is generally bigger and more abstract than a class. While a
class is a relatively low-level blueprint for an object instance, a
component might be a set of classes which together forms an encapsulated
module you then interface with. A component might even contain no
classes at all!

Components are usually proven domain solvers, also known as packages,
toolset etc. depending on language. If a component has proven itself it
can significantly simplyfy the architecture (reduce complexity) as it is
viewed as a black-box, focusing only on the interfaces.
Is it that a class is used within an OO language while a component can
be exported between OO languages?


Yes that's not far off, since you might have your component in a .dll
file which you link to externally. Strictly speaking a class can also be
exported, .NET adds a lot of functionality for cross language mixing.

A component might be compiled into the source tree (static component) or
linked at runtime (dynamic component). COM/COM+/ActiveX, EJB, CORBA are
all frameworks for Component Based Software Engineering (CBSE). In
general a component is much more tolerent than a class when it comes to
language independance, platform independance and configurability - and
usually you do not touch the code of a component at all, if you do, the
component has a bad design.

/Casper
Jul 22 '05 #2
orangepic333 wrote:
Could someone tell me what's the difference between the two?
Is it that a class is used within an OO language while a component can
be exported between OO languages?
Yes. A class has a public interface, and a component has a published
interface.
Are there other differences?


Only in context.

--
Phlip
http://industrialxp.org/community/bi...UserInterfaces
Jul 22 '05 #3

"orangepic333" <or**********@orangepic333.com> wrote in message
news:kt********************************@4ax.com...
Could someone tell me what's the difference between the two?
Is it that a class is used within an OO language while a component can
be exported between OO languages?
Are there other differences?
Thank you for your help.


C++ does not define "component", as far as I know.

In the MAC world, a component is actually a folder (directory) containing
sub-folders and specific types of files that represent an application the
user can run. The actual application is stored somewhere in the folder
tree. The operating system's Component Manager handles locating and loading
such applications (as requested through Finder actions by the user or via
other processes).

In the Windows COM world, a component is a loadable object, with a specific
interface derived from the standard IUnknown interface specification, which
is constructed such that external processes can query the object (via the
Windows registry), and make use of its published properties and functions
through an instance of a class that implements the derived interface.

Or, the term component may simply mean a part of a larger system, such as
the user-interface component or the audio processing component or the user
log component.

A class, on the other hand, is very specifically defined in C++ terms,
(although I don't have the formal specificaion for the term handy). Read
your C++ book for more info on classes.

-Howard


Jul 22 '05 #4

"orangepic333" <or**********@orangepic333.com> wrote
Could someone tell me what's the difference between the two?

Is it that a class is used within an OO language while a component can
be exported between OO languages?

Are there other differences?

You are sort of right.

"class" is a keyword in both C++ and Java. In both languages, a class
consists of data members grouped together, and functions or methods that act
on them. Usually the data members are made "private", so only the class
methods have direct access to them.
Where C++ and Java differ is the way in which classes can enter into
relationships with each other. Both allow inheritance, though Java calls it
extension. C++ allows multiple inheritance, whilst Java allows classes to
implement interfaces.

Now "component" doesn't have a defined meaning in either language. So you
need to know what context the person is using the term in. He may mean
simply a library, or a visual window on a GUI. In Java, he probaly means a
Java "bean", which is a special sort of Java class that can serialise
itself, and can be instantiated without source code. In a Microsoft context,
he probably means COM, the Microsoft component interface. This is basically
a C++ interface but is formally language-independent. Essentially
applications use a third party library by querying for supported
"interfaces". Direct X is built round COM, so that different graphics
hardware devices can be accessed by the same game without the need to
compile for all platforms.

Jul 22 '05 #5

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

Similar topics

1
by: vishal | last post by:
hi vishal here. could anyone tell me what is difference between get-post and head-put method of passing data between diffrent different web pages thxs for help in advance..............
1
by: Newbee Adam | last post by:
1. what is difference between buil and delpoy? 2. If I am finished with a web app lets say. how do I compile it and what type of a file will it be? .dll, aspx,... 3. how do I bundle an...
83
by: rahul8143 | last post by:
hello, what is difference between sizeof("abcd") and strlen("abcd")? why both functions gives different output when applied to same string "abcd". I tried following example for that. #include...
3
by: Junyin.Wu | last post by:
what is difference between SqlTransaction and T-Sql(begin tran, commit tran, rollback tran) thanks.
2
kiss07
by: kiss07 | last post by:
Hi, Any body Send reply.. What is difference between datatype Time and TimeStamp? Regards, Kiss07
0
by: Alexander Vasilevsky | last post by:
Hi! What a difference PowerShell Cmdlet and PSCmelet? -- http://www.alvas.net - Audio tools for C# and VB.Net developers
2
by: rameshcse2005 | last post by:
hai this is Ramesh , What the difference is between CREATE PROC and CREATE PROCEDURE? i have a basic question, i googled this question, but i could't get exact answer. so i hope somebody...
9
by: jinendrashankar | last post by:
Hi All, Can any one have any idea about this issue what is Difference between structure and class in C++ Other then by default structure have public scope and class have private scope For...
1
by: madha128 | last post by:
Anyone can please guide me, what is difference between Terminal & Consoles in Linux????
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.