Kotlin:MyClass :: class.java vs this.javaClass

时间:2017-03-03 05:27:34

标签: java classloader kotlin

我正在将项目迁移到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...

classLoadernull ...

enter image description here

enter image description here

enter image description here

(注意内存地址也不同)

为什么?

由于

1 个答案:

答案 0 :(得分:15)

如果在传递给apply的lambda中调用javaClass,则会在该lambda的隐式接收器上调用它。由于apply将自己的接收器(在这种情况下为Properties())转换为lambda的隐式接收器,因此您将有效地获取您创建的Properties对象的Java类。这当然不同于ObjectFactory所带来的ObjectFactory::class.java的Java类。

有关隐式接收器如何在Kotlin中工作的非常详尽的解释,您可以阅读this spec document