Is erlang considered managed or do you have t开发者_如何学Goo handle memory/pointers?
According to Craig Stuntz, all functional languages use garbage collection, which essentially means that they are managed languages. Functional programming features do not work well with the semantics of explicit memory release.
Garbage Collection in Erlang
http://prog21.dadgum.com/16.html
I can assure you, you don't have to deal with pointers in Erlang as there is none of these (yeah!).
精彩评论