Does it support concepts like separation of declaration and implementation (interfaces and classes in Java)? How about restricting access (like access modifiers in Java)?
Thanks
|
Does it support concepts like separation of declaration and implementation (interfaces and classes in Java)? How about restricting access (like access modifiers in Java)? Thanks |
|||||||||||
|
|
How do you separate declaration and implementation in Haskell? In Haskell you can define a typeclass, which is rather different from an object oriented class so don't let the name fool you. Using the keyword For example, the Hashable typeclass defines the Typeclasses aren't the only way to define an interface. A method that is often under-rated is a plain old data structure. Because Haskell has first class functions, you can define a data structure that has functions as fields:
And your functions can build or consume this data structure:
How do you restrict access to data in Haskell? To provide abstraction, Haskell uses Algebraic Data Types. To protect fields developers declare a data type but don't export it's constructors - instead they only export a set of safe primitives that maintain desired invariants. For example, the Map module provides a balanced tree. It couldn't guarantee balance if anyone could just declare a Map using the primitives of |
|||||
|
|
See this paper for a detailed explanation of how OO concepts can be implemented in Haskell. But as Antal said in the comments, don't try to write a Java program in Haskell. Remember that objects are a poor man's closure, and closures are a poor man's object. |
|||||||||||||
|
|
Type classes are indeed the only constructs that remind remotely on OO concepts - in this case, on interfaces. Though, unlike in java, type classes are not types. One good thing about type classes is that I can make totally unrelated, already existing types members of a type class. Whereas in java, sometimes one thinks: These classes A from package org.a and B from com.b that I am using ought really be implementing interface Y from a third package, but there is no way to do it that would not require a lot of boilerplate code, additional indirections, marshalling etc. BTW, as an elderly programmer I'd like to note that "separation of declaration and implementation" has per se nothing to do with OOP. Just because most OO-langugaes support it does not mean the concept was not well known for a long time before OO was invented. Interested youngsters who think that programming before mainstreaming of OO must have been on a "stone age" niveau may look up MODULA, for example, where separation of declaration and implementation is not only possible, but enforced by the language. |
|||
|
|
|
Yes, Oleg Kiselyov and friends implemented an OO system in Haskell. |
|||||||
|