idimpl1.java
来自「tinyos最新版」· Java 代码 · 共 22 行
JAVA
22 行
package org.python.core;public class IdImpl1 extends IdImpl { public long id(PyObject o) { if (o instanceof PyJavaInstance) { return System.identityHashCode(((PyJavaInstance)o).javaProxy); } else { return System.identityHashCode(o); } } public String idstr(PyObject o) { return Long.toString(id(o)); } public long java_obj_id(Object o) { return System.identityHashCode(o); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?