What's the difference between component & a class?

O

orangepic333

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.
 
P

Phlip

orangepic333 said:
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.
 
H

Howard

orangepic333 said:
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
 
C

Casper B

orangepic333 said:
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
 
M

Malcolm

orangepic333 said:
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top