HackerTrans
热门最新趋势评论往期问答秀出招聘

rickbutton

no profile record

评论

rickbutton
·3年前·讨论
roll your own runtime does not imply to me `import runtime from "runtime";` but this seems to just be "include deno and use deno"?
rickbutton
·7年前·讨论
Your definition of garbage collector excludes reference counting, which does not require scanning memory. Reference counting is a form of garbage collection. The type of garbage collection you are referring to is the sub-type of "tracing" garbage collection.

However, I agree, "free()" is not garbage collection, but rather a form of memory management, of which garbage collection is a subset, and manual (free) is another.