We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
public abstract class Bank { protected String name; protected String status; public abstract void draw(); public abstract void transfer(); public abstract void deposist(); public abstract void payment(); } public class BankFactory { public Bank newBank(String bankName) {} }
public class VPbank extends Bank { public void draw() {} public void transfer() {} public void deposist() {} public void payment() {} }
java public abstract class AbstractBankFactory { public abstract Bank newBank(String bankName) {} } public class BankFactory extends AbstractBankFactory { private final TpBankFactory tpBankFactory; private final VpBankFactory vpBankFactory; public Bank newBank(String bankName) { if (bankName == 'tpBank') { reutrn tpBankFactory.newBank(); } else if (bankName == 'vpBank') { reutrn vpBankFactory.newBank(); } } }
AbstractBankFactory
BankFactory
TpBankFactory
VpBankFactory
2.2K Point(s)
1.2K Point(s)
313 Point(s)
178 Point(s)
138 Point(s)
Input your email to receive reset password link, or if you remember your password, you can click