|
|
|
|
|
by munificent
4113 days ago
|
|
> I think what he means is that Go's built-in GC cannot be used to handle GC for the JVM. Sure it can, and that appears to be what this JVM does. There's nothing in the JVM spec that says you have to implement your own GC any more than you have to implement IEEE floating point numbers yourself. In fact, I don't think the JVM mentions GC at all. It just assumes infinite memory. If your implementation platform (in this case Go and the Go runtime) gives you something, by all means use it. |
|
It seems like it must mention something about finalizers.