本文介绍了如何在Java代码中使用scala.None的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Java中你可以使用构造函数创建一些
的实例,即 new Some(value)
,但无
没有合作伙伴类。如何将无
从Java传递给Scala函数?
In Java you can create an instance of Some
using the constructor, i.e. new Some(value)
, but None
has no partner class. How do you pass None
to a Scala function from Java?
推荐答案
我认为这个丑陋的一点会起作用: scala.None $ .MODULE $
I think this ugly bit will work: scala.None$.MODULE$
不需要新的实例,因为一个没有和另一个一样好......
There is no need for a new instance since one None is as good as another...
这篇关于如何在Java代码中使用scala.None的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!