这就是你如何调用.get作为第二个参数传递的实例/类的方法.
例如:
(.get foo) ;; invokes an instance method of a foo object
(.get Bar) ;; invokes a static method of a Bar class
Run Code Online (Sandbox Code Playgroud)
而
(get ...) ;; invokes a clojure get function
Run Code Online (Sandbox Code Playgroud)
参考文献: