捆绑 - 关键区分大小写?

时间:2012-02-09 12:07:43

标签: android bundle

我正在使用Bundle发送数据。

Bundle b = new Bundle();
b.putDouble("x", this.Location.X);
b.putDouble("y", this.Location.Y);

是否区分大小写?

2 个答案:

答案 0 :(得分:3)

Bundle和其他Key Mapping机制区分大小写。

更多讨论see here

答案 1 :(得分:2)

看起来像一个简单的地图,所以可能。你为什么不测试它?

编辑: 关键是一个字符串。 "x".equals("X") == false