/*创建一个银行账户的类思路:账户分为一个类;顾客信息分为一个类,其中顾客类中包含账户类信息;//知识点:类对象的创建;实例变量私有化并进行封装;建立取款与存款功能方法。*/public class TotalAccount{ public static void main(String[] args){ Account account1= new Account("1000",2000.0);//创建一个名为account1的Account类对象 Customer c1=new Customer("Jane Smith",acco...