Created
May 17, 2013 20:17
-
-
Save andrewharmellaw/5601722 to your computer and use it in GitHub Desktop.
Scala class with private (and immutable) parameter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val aClass = new ClassWithPrivateFields("name") | |
// NOTE: aClass.name is not accessible | |
// Which is equivalent to the following in Java: | |
// | |
// public class ClassWithValParameter() { | |
// | |
// private String description; | |
// | |
// public ClassWithVarParameter(String description) { | |
// this.description = description; | |
// } | |
// } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment