Object 內建對象

物件HeapGraphNode

HeapGraphNode表示堆疊視圖中的一個節點

繼承關係

成員屬性

type

Integer, 節點類型,可能的值:

1
readonly Integer HeapGraphNode.type;

name

String, 節點名稱

1
readonly String HeapGraphNode.name;

description

String, 節點的描述

1
readonly String HeapGraphNode.description;

id

Integer, 節點ID

1
readonly Integer HeapGraphNode.id;

shallowSize

Integer, 節點大小,單位為位元組

1
readonly Integer HeapGraphNode.shallowSize;

childs

NArray, 子節點列表,由HeapGraphEdge類型物件組成

1
readonly NArray HeapGraphNode.childs;

成員函數

toString

傳回物件的字串表示,一般回傳"[Native Object]",物件可以根據自己的特性重新實現

1
String HeapGraphNode.toString();

回傳結果:

  • String, 傳回物件的字串表示

toJSON

傳回物件的JSON 格式表示,一般傳回物件定義的可讀屬性集合

1
Value HeapGraphNode.toJSON(String key = "");

呼叫參數:

  • key: String, 未使用

回傳結果:

  • Value, 傳回包含可JSON 序列化的值