国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

Java中類似于C語言中Sizeof功能實現(二)

2019-11-18 10:49:31
字體:
來源:轉載
供稿:網友

  在做了所有這些預備之后,下面就是這種圖形遍歷的標準實現:
  public static IObjectPRofileNode profile (Object obj)
  {
  final IdentityHashMap visited = new IdentityHashMap ();
  
  final ObjectProfileNode root = createProfileTree (obj, visited,
  CLASS_METADATA_CACHE);
  finishProfileTree (root);
  
  return root;
  }
  
  private static ObjectProfileNode createProfileTree (Object obj,
  IdentityHashMap visited,
  Map metadataMap)
  {
  final ObjectProfileNode root = new ObjectProfileNode (null, obj, null);
  
  final LinkedList queue = new LinkedList ();
  
  queue.addFirst (root);
  visited.put (obj, root);
  
  final ClassaccessPrivilegedAction caAction =
  new ClassAccessPrivilegedAction ();
  final FieldAccessPrivilegedAction faAction =
  new FieldAccessPrivilegedAction ();
  
  while (! queue.isEmpty ())
  {
  final ObjectProfileNode node = (ObjectProfileNode) queue.removeFirst ();
  
  obj = node.m_obj;
  final Class objClass = obj.getClass ();
  
  if (objClass.isArray ())
  {
  final int arrayLength = Array.getLength (obj);
  final Class componentType = objClass.getComponentType ();
  
  // Add shell pseudo-node:
  final AbstractShellProfileNode shell =
  new ArrayShellProfileNode (node, objClass, arrayLength);
  shell.m_size = sizeofArrayShell (arrayLength, componentType);
  
  node.m_shell = shell;
  node.addFieldRef (shell);
  
  if (! componentType.isPrimitive ())
  {
  // Traverse each array slot:
  for (int i = 0; i < arrayLength; ++ i)
  {
  final Object ref = Array.get (obj, i);
  
  if (ref != null)
  {
  ObjectProfileNode child =
  (ObjectProfileNode) visited.get (ref);
  if (child != null)
  ++ child.m_refcount;
  else
  {
  child = new ObjectProfileNode (node, ref,
  new ArrayIndexLink (node.m_link, i));
  node.addFieldRef (child);
  
  queue.addLast (child);
  visited.put (ref, child);
  }
  }
  }
  }
  }
  else // the object is of a non-array type
  {
  final ClassMetadata metadata =
  getClassMetadata (objClass, metadataMap, caAction, faAction);
  final Field [] fields = metadata.m_refFields;
  
  // Add shell pseudo-node:
  final AbstractShellProfileNode shell =
  new ObjectShellProfileNode (node,
  metadata.m_primitiveFieldCount,
  metadata.m_refFields.length);
  shell.m_size = metadata.m_shellSize;
  
  node.m_shell = shell;
  node.addFieldRef (shell);
  
  // Traverse all non-null ref fields:
  for (int f = 0, fLimit = fields.length; f < fLimit; ++ f)
  {
  final Field field = fields [f];
  
  final Object ref;
  try // to get the field value:
  {
  ref = field.get (obj);
  }
  catch (Exception e)
  {
  throw new RuntimeException ("cannot get field [" +
  field.getName () + "] of class [" +
  field.getDeclaringClass ().getName () +
  "]: " + e.toString ());
  }
  
  if (ref != null)
  {
  ObjectProfileNode child =
  (ObjectProfileNode) visited.get (ref);
  if (child != null)
  ++ child.m_refcount;
  else
  {
  child = new ObjectProfileNode (node, ref,
  new ClassFieldLink (field));
  node.addFieldRef (child);
  
  queue.addLast (child);
  visited.put (ref, child);
  }
  }
  }
  }
  }
  
  return root;
  }
  
  private static void finishProfileTree (ObjectProfileNode node)
  {
  final LinkedList queue = new LinkedList ();
  IObjectProfileNode lastFinished = null;
  
  while (node != null)
  {
  // Note that an unfinished nonshell node has its child count
  // in m_size and m_children[0] is its shell node:
  
  if ((node.m_size == 1) (lastFinished == node.m_children [1]))
  {
  node.finish ();
  lastFinished = node;
  }
  else
  {
  queue.addFirst (node);
  for (int i = 1; i < node.m_size; ++ i)
  {
  final IObjectProfileNode child = node.m_children [i];
  queue.addFirst (child);
  }
  }
  
  if (queue.isEmpty ())
  return;
  else
  node = (ObjectProfileNode) queue.removeFirst ();
  }
  }
  
  該代碼是上一篇java Q&A, "Attack of the Clones."使用的"通過反射克隆"實現的遠親。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 尼木县| 常山县| 台东市| 枣阳市| 无棣县| 昭苏县| 牟定县| 霍山县| 大英县| 昭通市| 精河县| 永仁县| 南丰县| 西乌珠穆沁旗| 肥城市| 毕节市| 凤翔县| 凤城市| 阳信县| 宣汉县| 汕头市| 太谷县| 额尔古纳市| 棋牌| 兴城市| 磴口县| 浦江县| 景德镇市| 扶绥县| 吉木萨尔县| 九江县| 奉贤区| 五寨县| 松滋市| 浦东新区| 岳池县| 建始县| 体育| 两当县| 克拉玛依市| 黔西|