LL
Size: a a a
LL
LL
with-redefs, воPP
OR
3.6.4 Vars. Clojure also has a global variable system: vars. These references are interned in namespaces and are the storage locations to which free symbolic references in code are resolved and
bound. Vars are created and interned via def and its various flavors. Vars can be dynamically
rebound on an opt-in basis. The primary purpose of the var system is for references to functions,
and their variable nature is what supports dynamic development.
OR
IG
#' означает ссылку вместо значения. Кложа различает передачу по ссылки или по значению. Если это значение, то при изменении оригинала это не скажетя на переданном значении. А если ссылка, то поменяется везде.IG
DL
KC
AZ
#object[java.awt.Color 0x798ea70f "java.awt.Color[r=0,g=255,b=120]"]то что меня интересует это
0x798ea70f, очевидно что это как-то можно достать из класса. в питоне я бы пошел смотреть в str и repr для java.awt.Color
IG
OR
OR
610: /**
611: * Returns a string representation of this object. Subclasses may return
612: * any desired format, except for null, but this implementation returns
613: * <code>getClass().getName() + "[r=" + getRed() + ",g=" + getGreen()
614: * + ",b=" + getBlue() + ']'</code>.
615: *
616: * @return a string representation of this object
617: */
618: public String toString()
619: {
620: return getClass().getName() + "[r=" + ((value & RED_MASK) >> 16)
621: + ",g=" + ((value & GREEN_MASK) >> 😍 + ",b=" + (value & BLUE_MASK)
622: + ']';
623: }
AZ
KC
#’ которое не попадало бы под определение костыля )KC
OR