5
명확한 레퍼런스 벡터를 만드는 가장 간단한 방법은 무엇입니까?Clojure 레퍼런스 벡터
목록을 반환합니다 (repeat 5 (ref nil))
를 사용하지만, 그들은 모두 같은 심판 참조합니다 :
user=> (repeat 5 (ref nil))
(#<[email protected]: nil> #<[email protected]: nil> #<[email protected]: nil> #<[email protected]: nil> #<R
[email protected]: nil>)
같은 결과 (replicate 5 (ref nil))
과를 :
user=> (replicate 5 (ref nil))
(#<[email protected]: nil> #<[email protected]: nil> #<[email protected]: nil> #<[email protected]: nil>
#<[email protected]: nil>)
와의 랩 (VEC (소요 5 (반복 # (심판 전무)))) –