Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个处理程序来从不同的线程接收 UI 中的数据。
次要线程获得具有多个值的 Double[] 但是当我调用我的获取消息并将其发送到 UI 时,我不知道如何从对象转换为我的原始类型 Double[]
我试过这个,但它没有用。ArrayList extractData = (ArrayList) msg.obj;
如何将 Double[] 转换为 ArrayList 以便从 msg.obj 使用它?
谢谢
试试这个可能有效:
List<Double> doubleList = Arrays.asList(double_array);