What makes a type different from class and vice versa?
(In the general language-agnostic sense)
|
What makes a type different from class and vice versa? (In the general language-agnostic sense) |
||||
|
|
The following answer is from Gof book (Design Patterns )
max function requires a type with operation > with its own type as one of it interface any class that satisfies the above requirement can be used to generate specific max function for that class. |
||||
|
|
|
I always think of a 'type' as an umbrella term for 'classes' and 'primitives'.
|
|||||||||||||||||
|
|
Type is the umbrella term for all the available object templates or concepts. A class is one such object template. So is the structure type, the Integer type, the Interface type etc. These are all types If you want, you can look at it this way: A type is the parent concept. All the other concepts: Class, Interface, Structure, Integer etc inherit from this concept.i.e They are types |
|||
|
|
|
Type contains description of the data (i.e. properties, operations, etc), Class is a specific type - it is a template to create instances of objects. Strictly speaking class is a special concept, it can be seen as a package containing subset of metadata describing some aspects of an object. For example in C# you can find interfaces and classes. Both of them are types, but interface can only define some contract and can not be instantiated unlike classes. Simply speaking class is a specialized type used to encapsulate properties and behavior of an object. Wikipedia can give you a more complete answer: |
||||
|
|
|
Type generally refers to the classification of primitive values - integers, strings, arrays, booleans, null, etc. Usually, you can't create any new types. Class refers to the named set of properties and methods which an object is associated with when it is created. You can usually define as many new classes as you want, although some languages you have to create a new object and then attach methods to it. This definition is mostly true, but some languages have attempted to combine types and classes in various ways, with various beneficial results. |
|||
|
|
To illustrate it the fastest way: A Struct is a Type, but a Struct is not a Class. As you can see, a Type is an "abstract" term for not only definitions of classes, but also structs and primitive data types like float, int, bool. |
|||||||||||
|
|
To add another example of distinction: in C++ you have pointer and reference types which can refer to classes, but are not classes in and of themselves.
Note that only one class is involved, but a near infinite number of types can be used. In some languages, function are considered "first-class-objects" in which case, the type of a function is a class. In others, the type of a function is merely a pointer. Classes generally have the concepts of being able to hold data, as well as operations on that data. |
|||
|
|
|
I think of a type as being the set of things you can do with a particular value. For instance, if you have an integer value, you can add it to other integers (or perform other arithmetic operations), or pass it to functions which accept an integer argument. If you have an object value, you can call methods on it that are defined by its class. Because a class defines what you can do with objects of that class, a class defines a type. A class is more than that though, since it also provides a description of how the methods are implemented (something not implied by the type) and how the fields of the object are laid out. Note also that an object value can only have one class, but it may have multiple types, since every superclass provides a subset of the functionality available in the object's class. So although objects and types are closely related, they are really not the same thing. |
|||
|
|
|
Type is conceptually a superset of class. In the broader sense, a class is one form of type. Closely related to classes are interfaces, which can bee seen as a very special kind of class - a purely abstract one. These too are types. So "type" encompasses classes, interfaces and in most languages primitives too. Also platforms like the dot-net CLR have structure types too. |
|||||||||||
|
|
Interesting question. I think aku's answer is spot on. Take the java
An instance of the |
|||
|
|
|
Types and classes are related but not identical. My take is that classes are used for implementation inheritance, whereas types are used for runtime substitution. Here is a link explaining the substitution principle and why subclasses and subtypes are not always the same thing (in Java for example). The wikipedia page on covariance and contravariance has more information on this distinction. |
|||
|
|
|
Different classes may describe the same type. Type consists of these parts:
Class consists of these parts:
Some notes:
|
|||
|
|
|
My thoughts are pretty much in line with aku's answer. I see classes as a template for building objects, while types are a way to classify those objects, and provide us with an interface to them. Python also adds metaclasses, that are just a mechanism to build classes, in the same way as classes build objects (and well, classes and metaclasses are both objects). This response to the same question in lamba the ultimate seems to me like a perfect explanation. |
|||
|
|