gpt4 book ai didi

java - 从对象获取值

转载 作者:行者123 更新时间:2023-12-01 13:02:14 24 4
gpt4 key购买 nike

我尝试了一些关于堆栈溢出的解决方案,但它们似乎不适合我。

我使用以下 onlongclicklistener

Object j = (Quote) MainActivity.this.adapter.getItem(position);

下面是我的对象J

现在我想将股票代码的值获取到字符串中

我该如何解决这个问题。我需要 HashMap 吗?

String valueofticker = j.toString(ticker); // How to do this ?

enter image description here

最佳答案

如果适配器内的项目是 Quote 对象的列表,那么您可以这样做:

class Quote {
private String ticker;

// create getter and setter methods here for all
// the variables in the Quote class.
}

使用此获取报价:

Quote qObj = (Quote) MainActivity.this.adapter.getItem(position);

像这样获取股票代码值:

String tickerValue = qObj.getTicker();
// the same will apply for all other variables of the class Quote.

希望有帮助!

关于java - 从对象获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23439802/

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