Java中的字符串...参数

2022-01-21 00:00:00 arguments syntax java

我必须为家庭作业实现一个 API,而我的老师使用我不熟悉的符号表示 API 中的一种方法(基于 javadoc).

I have to implement an API for a homework assignment, and my instructor has used a notation I am unfamiliar with for one of the methods in the API (javadoc based).

public void method(String... strs);

..."是什么意思?后来看起来我需要使用单个字符串实际参数以及多个字符串实际参数来调用相同的方法...

What do the '...' mean? It later looks like I'll need to call this same method using a single string actual parameter, as well as multiple string actual parameters...

Java 没有可选参数(据我所知),所以我在这里有点困惑......

Java doesn't have optional arguments (to my knowledge), so I am a little confused here...

推荐答案

叫做varargs;http://docs.oracle.com/javase/6/docs/technotes/指南/语言/varargs.html

这意味着您可以向方法传递任意数量的参数(甚至为零).

It means you can pass an arbitrary number of arguments to the method (even zero).

在该方法中,参数将自动放入指定类型的数组中,您可以使用该数组访问各个参数.

In the method, the arguments will automatically be put in an array of the specified type, that you use to access the individual arguments.

相关文章