diff options
author | Pablo Najt <pablonajt@gmail.com> | 2017-03-24 14:53:41 -0300 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2017-03-24 18:53:41 +0100 |
commit | c1d773eab766891c8c9f5820bf18c8fafa6a8d5e (patch) | |
tree | b5592f50f4314ea12b57a81446038619dd809c51 /zh-cn/kotlin-cn.html.markdown | |
parent | 29f41f2802490cfa001a6170b98aaf715a89e456 (diff) |
[kotlin/all] Rename variable fooMutableDate to fooMutableData (#2688) (#2689)
Diffstat (limited to 'zh-cn/kotlin-cn.html.markdown')
-rw-r--r-- | zh-cn/kotlin-cn.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zh-cn/kotlin-cn.html.markdown b/zh-cn/kotlin-cn.html.markdown index 1fd12f5b..eb69156b 100644 --- a/zh-cn/kotlin-cn.html.markdown +++ b/zh-cn/kotlin-cn.html.markdown @@ -178,13 +178,13 @@ fun helloWorld(val name : String) { // "with"函数类似于JavaScript中的"with"用法。 data class MutableDataClassExample (var x: Int, var y: Int, var z: Int) - val fooMutableDate = MutableDataClassExample(7, 4, 9) - with (fooMutableDate) { + val fooMutableData = MutableDataClassExample(7, 4, 9) + with (fooMutableData) { x -= 2 y += 2 z-- } - println(fooMutableDate) // => MutableDataClassExample(x=5, y=6, z=8) + println(fooMutableData) // => MutableDataClassExample(x=5, y=6, z=8) /* 我们可以使用"listOf"函数来创建一个list。 |