How do I make use of Chrome’s heap profiler? When I expand a tree, what do the children objects represent? What is the count column a count of exactly?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Here‘s a short tutorial.
The children are objects that contain/reference the parent object. For example, if you have a class
Listand it contains an array of items you get his:String
–Array
—-List
String, Array and List are the Constructors used to create the respective object.
So you might have 50 Strings if you have 5 lists with 10 items each.
This video explains things in a little more detail.