I encountered the following in Scala code:
class MyClass {
...
val a = new A; import a._
}
What does exactly val a = new A; import a._ mean ?
|
|
|
It imports the methods and variables of the a object. So if you want to call |
|||
|
|
|
It means that all methods and variables of
instead of
but only within the scope where |
||||
|
|
|
Let's explain this with something you should be familiar with:
The question is: why does that work? There's no object called
In other words,
Importing the contents of a stable reference (ie, not a It also makes any implicits defined inside it available, which is how the implicit conversions defined inside |
|||
|
|