为何messageformat的format方法会抛出classcastexception的异常
MessageFormat mf=new MessageFormat("{0}");System.out.println(mf.format(new Object()));
请教了!!!
搜索更多相关的解决方案:
format
----------------解决方案--------------------------------------------------------
因为Format.format()方法需要传进去的参数是一个Object[]对象,而不是一个Object对象
----------------解决方案--------------------------------------------------------