Skip to content

Commit 42a6e8e

Browse files
authoredFeb 27, 2024··
update translation according to English. (#2979)
* update translation according to Engish. * correct translation. Deleted English sentences.
1 parent 27cf89e commit 42a6e8e

File tree

1 file changed

+29
-10
lines changed

1 file changed

+29
-10
lines changed
 

‎_zh-cn/overviews/scala3-book/methods-main-methods.md

+29-10
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ layout: multipage-overview
1313
permalink: "/zh-cn/scala3/book/:title.html"
1414
---
1515

16+
<h5>编写<span class="tag tag-inline">仅Scala 3 适用</span>的一行程序</h5>
1617

1718
Scala 3 提供了一种定义可以从命令行调用的程序的新方法:在方法中添加 `@main` 注释会将其变成可执行程序的入口点:
1819

@@ -26,16 +27,10 @@ Scala 3 提供了一种定义可以从命令行调用的程序的新方法:在
2627
{% endtab %}
2728
{% endtabs %}
2829

29-
只需将该行代码保存在一个名为 *Hello.scala* 的文件中——文件名不必与方法名匹配——并使用 `scalac` 编译它
30+
只需将该行代码保存在一个名为 *Hello.scala* 的文件中——文件名不必与方法名匹配——并使用 `scala` 运行它
3031

3132
```bash
32-
$ scalac Hello.scala
33-
```
34-
35-
然后用 `scala` 运行它:
36-
37-
```bash
38-
$ scala hello
33+
$ scala Hello.scala
3934
Hello, world
4035
```
4136

@@ -81,8 +76,8 @@ $ scala happyBirthday 23 Lisa Peter
8176
Happy 23rd Birthday, Lisa and Peter!
8277
```
8378

84-
如图所示`@main` 方法可以有任意数量的参数。
85-
对于每个参数类型,必须是 `scala.util.CommandLineParser.FromString` 类型类的一个 [given实例]({% link _overviews/scala3-book/ca-context-parameters.md %}),它将参数 `String` 转换为所需的参数类型。
79+
如上所示`@main` 方法可以有任意数量的参数。
80+
对于每个参数类型,必须是 `scala.util.CommandLineParser.FromString` 类型类的一个 [given实例]({% link _zh-cn/overviews/scala3-book/ca-context-parameters.md %}),它将参数 `String` 转换为所需的参数类型。
8681
同样如图所示,主方法的参数列表可以以重复参数结尾,例如 `String*`,它接受命令行中给出的所有剩余参数。
8782

8883
`@main` 方法实现的程序检查命令行上是否有足够的参数来填充所有参数,以及参数字符串是否可以转换为所需的类型。
@@ -96,6 +91,30 @@ $ scala happyBirthday sixty Fred
9691
Illegal command line: java.lang.NumberFormatException: For input string: "sixty"
9792
```
9893

94+
## 用户自定义的类型作为参数
95+
96+
正如上面指出的,编译器为参数类型寻找 `scala.util.CommandLineParser.FromString` 类型类 的given 实例。
97+
例如,我们自定义了一个 `Color`类型,并希望当以参数使用。你可以像以下代码这样使用:
98+
99+
{% tabs method_3 %}
100+
{% tab 'Scala 3 Only' for=method_3 %}
101+
102+
```scala
103+
enum Color:
104+
case Red, Green, Blue
105+
106+
given ComamndLineParser.FromString[Color] with
107+
def fromString(value: String): Color = Color.valueOf(value)
108+
109+
@main def run(color: Color): Unit =
110+
println(s"The color is ${color.toString}")
111+
```
112+
113+
{% endtab %}
114+
{% endtabs %}
115+
116+
这对于您程序中的自定义类型以及可能使用的其他库中的类型,都是一样的。
117+
99118
## 细节
100119

101120
Scala 编译器从 `@main` 方法 `f` 生成程序,如下所示:

0 commit comments

Comments
 (0)
Please sign in to comment.