如何在处理中将对象的 ArrayList 转换为浮动
ArrayList a = new ArrayList();
for(int i = 0; i < a.size(), i++)
{
float f = float(a.get(i)); // ERROR : cant convert Object to float
}
ArrayList a = new ArrayList();
for(int i = 0; i < a.size(), i++)
{
float f = float(a.get(i)); // ERROR : cant convert Object to float
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Processing 是一个比较简单的java,所以你可以使用java语法:
Lookup 自动装箱/拆箱。
Processing is a simpler java, so you can use the java syntax:
Lookup autoboxing/unboxing.
不能是 .NET,否则将是 i < a.计数;
浮点 f = (浮点)(a.get(i)); ??
Must not be .NET, otherwise would be i < a.count;
float f = (float)(a.get(i)); ??