摘要: 有以下UML类图 Account类 package exer; public class Account { //余额 private double balance; //构造器 public Account(double init_balance){ this.balance=init_balan 阅读全文
posted @ 2022-01-10 19:44 ice--cream 阅读(39) 评论(0) 推荐(0) 编辑
摘要: this可以调用属性和方法 this可以调用构造器 在类的构造器中,可以显式的使用this(参数列表)方式,调用本类中指定的其他构造器 构造器中不能通过this(形参列表)调用自己 如果一个类中有n个构造器,则最多有(n-1)个构造器使用了”this(形参列表) 规定:“this(形参列表)必须声明 阅读全文
posted @ 2022-01-10 14:51 ice--cream 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 1、+表示public类型,-表示private类型,#表示protected类型 2、方法的写法: ​ 方法的类型(+、-)方法名(参数名:参数类型):返回值类型 3、带下划线的方法为构造器 4、属性部分:”:“前是属性名,”:“后是属性的类型 阅读全文
posted @ 2022-01-10 13:37 ice--cream 阅读(38) 评论(0) 推荐(0) 编辑
摘要: JavaBean是一种Java语言写成的可重用组件 所谓JavaBean,是指符合如下标准的Java类: 类是公共的 有一个无参的公共的构造器 有属性,且有对应的get、set方法 阅读全文
posted @ 2022-01-10 11:56 ice--cream 阅读(23) 评论(0) 推荐(0) 编辑