hadoop原始碼解讀——Configured

校嘻嘻發表於2013-11-02
package org.apache.hadoop.conf;
/** Base class for things that may be configured with a {@link Configuration}. */

public class Configured implements Configurable {


  private Configuration conf;

  /** Construct a Configured. */
  public Configured() {
    this(null);
  }
  
  /** Construct a Configured. */
  public Configured(Configuration conf) {
    setConf(conf);
  }

  // inherit javadoc
  public void setConf(Configuration conf) {
    this.conf = conf;
  }

  // inherit javadoc
  public Configuration getConf() {
    return conf;

  }

這個類裡面就兩個方法,只是簡單地實現了Configurable,它和Configuration類還是有區別的,目前來說,我還不知道這兩個類應用上的差別,我知識知道這裡面有的方法那裡面沒有,以後再補充。


相關文章