当前位置: 代码迷 >> Java相关 >> 为何messageformat的format方法会抛出classcastexception的异常
  详细解决方案

为何messageformat的format方法会抛出classcastexception的异常

热度:618   发布时间:2007-10-16 16:26:39.0
为何messageformat的format方法会抛出classcastexception的异常
MessageFormat mf=new MessageFormat("{0}");
System.out.println(mf.format(new Object()));
请教了!!!
搜索更多相关的解决方案: format  

----------------解决方案--------------------------------------------------------
因为Format.format()方法需要传进去的参数是一个Object[]对象,而不是一个Object对象
----------------解决方案--------------------------------------------------------
  相关解决方案