我正在将项目迁移到Kotlin,并且:
public static Properties provideProperties(String propertiesFileName) {
Properties properties = new Properties();
InputStream inputStream = null;
try {
inputStream = ObjectFactory.class.getClassLoader().getResourceAsStream(propertiesFileName);
properties.load(inputStream);
return properties;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return null;
}
现在是:
fun provideProperties(propertiesFileName: String): Properties? {
return Properties().apply {
ObjectFactory::class.java.classLoader.getResourceAsStream(propertiesFileName).use { stream ->
load(stream)
}
}
}
非常好,Kotlin! :P
问题是:此方法在.properties
中查找src/main/resources
文件。使用:
ObjectFactory::class.java.classLoader...
它有效,但使用:
this.javaClass.classLoader...
classLoader
是null
...
(注意内存地址也不同)
为什么?
由于
答案 0 :(得分:15)
如果在传递给apply
的lambda中调用javaClass
,则会在该lambda的隐式接收器上调用它。由于apply
将自己的接收器(在这种情况下为Properties()
)转换为lambda的隐式接收器,因此您将有效地获取您创建的Properties
对象的Java类。这当然不同于ObjectFactory
所带来的ObjectFactory::class.java
的Java类。
有关隐式接收器如何在Kotlin中工作的非常详尽的解释,您可以阅读this spec document。