Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5f5bec commit 9e0afdbCopy full SHA for 9e0afdb
zh-cn/overviews/core/value-classes.md
@@ -40,7 +40,7 @@ Value class只能继承universal traits,但其自身不能再被继承。所
40
41
下面有关RichInt的代码片段示范了RichInt是如何继承Int来允许3.toHexString的表达式:
42
43
- class RichInt(val self: Int) extends AnyVal {
+ implicit class RichInt(val self: Int) extends AnyVal {
44
def toHexString: String = java.lang.Integer.toHexString(self)
45
}
46
0 commit comments