gpt4 book ai didi

java - android.os.Bundle 中 getInt(string key) 返回的整数是多少?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:20:08 26 4
gpt4 key购买 nike

我阅读了有关 getInt() 方法的文档:

public int getInt (String key)

Returns the value associated with the given key, or 0 if no mapping of the desired type exists for the given key.

Parameters:

key a string

return:

an int value

但我不知道它到底返回了什么。

R.java 中的 key 的 ID 或者没有其他东西???

最佳答案

它会返回您使用相同 key 放入该 bundle 中的任何内容。

Bundle bundle = new Bundle();
bundle.putInt("KEY", 1);
int value = bundle.getInt("KEY"); // returns 1

它只是一个 map /字典数据类型,您可以在其中将字符串值与其他内容进行映射。如果您有其他数据类型,您应该为该数据类型使用适当的放置/获取方法。

关于java - android.os.Bundle 中 getInt(string key) 返回的整数是多少?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31210182/

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