init()方法的使用

Posted on 2016-06-26 22:58  上善其若水,厚德载物  阅读(854)  评论(0编辑  收藏  举报
public AB class{

private  CD cd;
private String ef;
private Date gh;
//init将变量挂到一个地方,以后的方法中多次调用
public void init(CD cd){
 ef = cd.getXX();
gh = cd.getXX();
}

public void methodA(){
 anotherMethod(ef,gh);
}

public void methodB(){
 theOtherMethod(ef,gh);
}


}

以后在用到的时候

步骤1:new 一个类set变量
CD cd = new CD();
cd.setXX();
步骤2:AB对象调用cd
AB.init(cd);
步骤3:AB的对象调用methodA
AB.methodA();

 

Copyright © 2024 上善其若水,厚德载物
Powered by .NET 9.0 on Kubernetes