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.
使 [ [1,2], [3,4] ] 变为 [1,2,3,4] 的命令是什么?
(代别人询问)
该.flat消息是您所追求的:
.flat
[[1,2],[3,4]].flat
.flatten在这种情况下,也有相同的结果(但.flatten只会展平一个“级别”,而.flat会一直展平为完全平坦的阵列)
.flatten