I'm just going over some Scala tutorials on the Internet and have noticed in some examples an object is declared at the start of the example.
What is the difference between class and object are as far as Scala is concerned?
|
I'm just going over some Scala tutorials on the Internet and have noticed in some examples an object is declared at the start of the example. What is the difference between class and object are as far as Scala is concerned? |
||||
|
|
|
You can think of the "object" keyword creating a Singleton object of a class, that is defined implicitely.
This will declare an anonymous class which extends B with the trait C and create a single instance of this class named A. |
|||||||||||||||
|
|
A An There is a relationship between For example:
|
|||||||
|
|
An object has exactly one instance (you can not call Object serves the same (and some additional) purposes as the static methods and fields in Java. |
||||
|
|
|
An defining an object in Scala is like defining a class in Java that has only static methods. However, an in Scala an object can extend another superclass, implement interfaces, and be passed around as though it were an instance of a class. (So it's like the static methods on a class but better). |
|||
|
|