Символ разделителя пути в python 2.4

Просто мои 2 цента: Вот код для Enum.java, как опубликовано Sun и частью JDK:

public abstract class Enum<E extends Enum<E>>
    implements Comparable<E>, Serializable {

    // [...]

    /**
     * Returns true if the specified object is equal to this
     * enum constant.
     *
     * @param other the object to be compared for equality with this object.
     * @return  true if the specified object is equal to this
     *          enum constant.
     */
    public final boolean equals(Object other) { 
        return this==other;
    }


}
15
задан SilentGhost 10 September 2009 в 11:40
поделиться