本文介绍了为什么Integer.getInteger不起作用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下代码:

game.log.fine("HERE" + bestMove.get("score"));
Integer bestScore = Integer.getInteger(bestMove.get("score"));
game.log.fine("THERE" + bestScore);

作为输出我有:

FINE: HERE50
Dec 9, 2010 11:34:17 AM game.Agent getCloud
FINE: THEREnull
Dec 9, 2010 11:34:17 AM game.Agent getCloud

可能我必须添加bestMove HashMap<字符串,字符串>

Probably I had to add that bestMove is HashMap<String,String>.

问题是 bestMove.get(得分)给出一个字符串值(等于50)。但是如果尝试转换为整数,我得到 null

The problem is that bestMove.get("score") gives a string value (equal to "50"). But if try to transform to integer, I get null.

有人知道这里有什么问题吗? / p>

Does anybody know what is the problem here?

推荐答案

因为不是您要搜索的内容。来自Javadoc:

Because Integer.getInteger is not what you're searching for. From the Javadoc :

如果$ b没有属性$ b指定的名称,如果指定的名称
为空或null,或者属性
没有正确的数字
格式,则返回null。

If there is no property with the specified name, if the specified name is empty or null, or if the property does not have the correct numeric format, then null is returned.

您想使用

这篇关于为什么Integer.getInteger不起作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-02 01:22