gpt4 book ai didi

java - Scala 数组到 Java

转载 作者:行者123 更新时间:2023-12-01 16:48:59 24 4
gpt4 key购买 nike

我有从 scala 类到 Java 的调用

  private def initSpringActorContext: ConfigurableApplicationContext = {
val resourceLocations = Array[String]("aopContext.xml", "akkaContext.xml")
new GenericXmlApplicationContext(resourceLocations))
}

Java 类期望

 public GenericXmlApplicationContext(String... resourceLocations) {
this.load(resourceLocations);
this.refresh();
}

我尝试使用 import collection.JavaConverters._ 来转换它

但我无法让它与数组一起使用。

有什么建议吗?

最佳答案

您不需要一个数组,而是一个可变参数。

您应该执行new GenericXmlApplicationContext(resourceLocations: _*)

关于java - Scala 数组到 Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44452072/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com