admin管理员组

文章数量:1339477

Should I free the allocated memory by myself, or is there a kind of garbage collector?

Is it okay to use the following code in JavaScript?

function fillArray()
{
  var c = new Array;
  c.push(3);
  c.push(2);
  return c;
}

var arr = fillArray();
var d = arr.pop()

thanks

Should I free the allocated memory by myself, or is there a kind of garbage collector?

Is it okay to use the following code in JavaScript?

function fillArray()
{
  var c = new Array;
  c.push(3);
  c.push(2);
  return c;
}

var arr = fillArray();
var d = arr.pop()

thanks

Share Improve this question edited Jun 27, 2015 at 3:48 Diptendu 2,1581 gold badge17 silver badges30 bronze badges asked May 15, 2009 at 7:47 ArtemArtem 1
  • What would you want to do in this example? – Gumbo Commented May 15, 2009 at 7:52
Add a ment  | 

3 Answers 3

Reset to default 8

Quoted from the Apple JavaScript Coding Guidelines:

Use delete statements. Whenever you create an object using a new statement, pair it with a delete statement. This ensures that all of the memory associated with the object, including its property name, is available for garbage collection. The delete statement is discussed more in “Freeing Objects.”

This would suggest that you use a delete mand to then allow the garbage collector to free the memory allocated for your Array when you're finished using it. The point that the delete statement only removes a reference is worth noting in that it differs from the behaviour in C/C++, where there is no garbage collection and delete immediately frees up the memory.

Memory management in JavaScript is automatic and there is a garbage collector (GC).

https://developer.mozilla/en-US/docs/Web/JavaScript/Memory_Management

You cannot explicitly delete the variables d and arr, but you can remove references to their value by setting the variables to something else, such as null, to allow the GC to remove them from memory.

arr = null;
d = null;

Note that the delete keyword only deletes object properties.

The variables arr and d will exist as global variables and will exist until they are collected by the Garbage Collector.

The variables will be set as properties on the global object i.e. window in a browser environment but since they are declared with var, they will not be deletable from the global object.

In your particular case, the best course of action might be to assign null to the variables after you are finished with them. You may also want to consider containing their scope to a function and do what you need to do with them inside that function.

本文标签: arraysDeallocating memory used by Javascript objectsStack Overflow