org.apache.hadoop.conf-Configurable 落日映苍穹つ 2021-12-24 03:27 223阅读 0赞 -------------------- 从包名可以看出这个包里面都是配置相关的类;从类名上可以看出这是一个接口,或者说配置类接口。内容很少。 -------------------- 1 package org.apache.hadoop.conf; 2 3 /** Something that may be configured with a { @link Configuration}. */ 4 public interface Configurable { 5 6 /** Set the configuration to be used by this object. */ 7 void setConf(Configuration conf); 8 9 /** Return the configuration used by this object. */ 10 Configuration getConf(); 11 } -------------------- 子接口或者实现它的类有: ![111430174528183.x-png][] 其中Configured类就是同包下的,算是最亲的一个孩子 -------------------- 没什么好看的 -------------------- 转载于:https://www.cnblogs.com/admln/p/Configurable.html [111430174528183.x-png]: /images/20211223/81c95bd7865747829cd9c6053cec95f9.png
还没有评论,来说两句吧...