为什么字符串格式化会导致转换异常?
为什么 (String/format "%8s" (Integer/toBinaryString 6))
会导致 java.lang.ClassCastException: java.lang.String 无法转换为 [Ljava.lang.对象
转换异常?
Why does (String/format "%8s" (Integer/toBinaryString 6))
result in a java.lang.ClassCastException: java.lang.String cannot be cast to [Ljava.lang.Object
casting exception?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不了解 Clojure,但我怀疑它试图像 Java 一样调用该方法:
但没有可变参数支持。我怀疑您想要:
请参阅此邮件列表主题 从真正了解 Clojure 的人那里获取更多信息:)
I don't know Clojure, but I suspect that's trying to call the method as if it were the Java:
but without the varargs support. I suspect you want:
See this mailing list thread for more information from people who actually do know Clojure :)