java.nio.file.WatchService文件系統監視服務的接口類,它的具體實現由監視服務提供者負責加載。java
java.nio.file.Watchable 實現了 java.nio.file.Watchable 的對象才能註冊監視服務 WatchService。java.nio.file.Path
實現了 watchable 接口,後文使用 Path 對象註冊監視服務。code
java.nio.file.WatchKey 該類表明着 Watchable 對象和監視服務 WatchService 的註冊關係。WatchKey 在 Watchable 對象向 WatchService 註冊的時候被建立。它是 Watchable 和 WatchService 之間的關聯類。對象