clojure中watch监听机制代码

代码语言:clojure

所属分类:通讯

代码描述:clojure中watch监听机制代码

代码标签: 监听 机制

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

(ns clojure.examples.example
   (:gen-class))
(defn Example []
   (def x (atom 0))
   (add-watch x :watcher
      (fn [key atom old-state new-state]
      (println &qu.........完整代码请登录后点击上方下载按钮下载查看

网友评论0