在Clojure中将关键字应用于映射与映射至关键字

Say I have a map {:x 1}.

I noticed that I can lookup :x either by applying it to the map:

(:x {:x 1})
;=> 1

或通过将地图应用于关键字:

({:x 1} :x)
;=> 1

两种形式有什么区别?