gpt4 book ai didi

java - 从对象转换为原始类

转载 作者:行者123 更新时间:2023-12-02 10:50:58 24 4
gpt4 key购买 nike

我将 Entry 类的实例存储在 Object 中。

Entry newentry = new Entry(j, 0.0);
Object test = newentry;

如何将 test 对象转换回 Entry 类以访问 Entry 类方法 getValue()?

最佳答案

类型转换:

Entry newentry = new Entry(j, 0.0);
Entry test = (Entry) newentry;

此外,如果getValue是一个类方法,则不需要实例来访问它,可以直接调用它:

Object x = Entry.getValue();

关于java - 从对象转换为原始类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4029166/

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