在方法参数中初始化数组
在 PHP 中,您可以执行以下操作:
method(array("a", "b"));
您可以在 Java 中初始化一个字符串数组作为方法调用中的参数,例如 tihs:
method(new String[] = {"a", "b"});
谢谢!
In PHP you can do the following:
method(array("a", "b"));
Can you in Java initialize a String array as an argument in the method call, something like tihs:
method(new String[] = {"a", "b"});
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Java 有一个等效的构造:
Java has an equivalent construct:
@Hovercraft 的答案展示了如何在 Java 中创建内联数组。
您可以通过使用实用程序方法(利用 Java 的有限类型推断的方法)进一步改进该解决方案,以消除冗余的数组类型注释。
代码:
@Hovercraft's answer shows how to create an array inline in Java.
You could further improve on that solution by using an utility method (one that makes use of Java's limited type inference) to get rid of the redundant array type annotation.
Code:
Java 有 varargs 方法:
您可以使用零到 n 个参数调用这样的方法,编译器从参数创建一个数组,例如该方法相当于此签名:
Java has varargs methods:
You can call such a method with zero to n parameters, the compiler creates an array from the parameters, e.g. the method is equivalent to this Signature:
不
但是我们有匿名类。
No
But we have anonymous class.