Suppose I have the following
class SimpleClass (myInt: Int, myString: String) {
}
What is wrong with the following?
val mySimple = new SimpleClass(1, "hi")
println(mySimple.myInt)
|
Suppose I have the following
What is wrong with the following?
|
|||
|
|
|
If you want the contructor parameters to be available as fields of the class, you have to declare them as vals or vars:
|
|||||
|
|
The java equivalent of your Scala definition is:
No wonders it doesn't work... Hey dude, that's your 17th scala question and you are still troubled by the very basics of the language. Perhaps you should take an afternoon and read some of tutorial on-line (or some book) to consolidate your knowledge. I can suggest: |
|||||
|
|
For the full POJO experience™, including equality, hashCodes and sane implementation of
Parameters to a case class are automatically made into vals. You can explicitly make them vars if you wish, but this this sort of thing is typically frowned upon in Scala - where immutable objects are favoured. |
|||
|
|
|
The problem is that you are calling the
|
|||
|
|