Skip to content

Other memo

irxground edited this page Jul 30, 2013 · 5 revisions

Almost unique id

Java

class System {
    public static int identityHashCode(Object x);
}

C#: Object.GetHashCode() のoverrideしてないものを呼ぶらしい

using System.Runtime.CompilerServices;
class RuntimeHelpers {
    public static int GetHashCode(Object o);
}

Clone this wiki locally