this关键字
1.1、this是一个关键字,是一个引用,保存内存地址指向自身。
1.2、this可以使用在实例方法中,也可以使用在构造方法中。
1.3、this出现在实例方法中其实代表的是当前对象。
1.4、this不能使用在静态方法中。
1.5、this. 大部分情况下可以省略,但是用来区分局部变量和实例变量的时候不能省略。
1.6、this() 这种语法只能出现在构造方法第一行,表示当前构造方法调用本类其他的构造方法,目的是代码复用。
JVM中的体现
代码示例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
public class ThisTest03{ public static void main(String[] args){
Student s = new Student(); s.setNo(111); s.setName("张三"); System.out.println("学号:" + s.getNo()); System.out.println("姓名:" + s.getName());
Student s2 = new Student(2222, "李四"); System.out.println("学号:" + s2.getNo()); System.out.println("姓名:" + s2.getName());
} }
class Student{ private int no;
private String name;
public Student(){ }
public Student(int no, String name){ this.no = no; this.name = name; }
public void setNo(int no){ this.no = no; } public int getNo(){ return no; }
public void setName(String name){ this.name = name; }
public String getName(){ return name; } }
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
public class ThisTest04{ public static void main(String[] args){ Date d1 = new Date(); d1.detail();
Date d2 = new Date(2008, 8, 8); d2.detail(); } }
class Date{ private int year; private int month; private int day;
public Date(){
this(1970, 1, 1); } public Date(int year, int month, int day){ this.year = year; this.month = month; this.day = day; }
public void detail(){ System.out.println(this.year + "年" + this.month + "月" + this.day + "日"); }
public void setYear(int year){ this.year = year; } public int getYear(){ return year; } public void setMonth(int month){ this.month = month; } public int getMonth(){ return month; } public void setDay(int day){ this.day = day; } public int getDay(){ return day; } }
|
继承(上)
1、什么是继承,有什么用?
继承:在现实世界当中也是存在的,例如:父亲很有钱,儿子不用努力也很有钱。
继承的作用:
基本作用:子类继承父类,代码可以得到复用。(这个不是重要的作用,是基本作用。)
主要(重要)作用:因为有了继承关系,才有了后期的方法覆盖和多态机制。
2、继承的相关特性
① B类继承A类,则称A类为超类(superclass)、父类、基类,
B类则称为子类(subclass)、派生类、扩展类。
class A{}
class B extends A{}
我们平时聊天说的比较多的是:父类和子类。
superclass 父类
subclass 子类
② java 中的继承只支持单继承,不支持多继承,C++中支持多继承,
这也是 java 体现简单性的一点,换句话说,java 中不允许这样写代码:
class B extends A,C{ } 这是错误的。
③ 虽然 java 中不支持多继承,但有的时候会产生间接继承的效果,
例如:class C extends B,class B extends A,也就是说,C 直接继承 B,
其实 C 还间接继承 A。
④ java 中规定,子类继承父类,除构造方法不能继承之外,剩下都可以继承。但是私有的属性无法在子类中直接访问。(父类中private修饰的不能在子类中直接访问。可以通过间接的手段来访问。)
⑤ java 中的类没有显示的继承任何类,则默认继承 Object类,Object类是
java 语言提供的根类(老祖宗类),也就是说,一个对象与生俱来就有
Object类型中所有的特征。
⑥ 继承也存在一些缺点,例如:CreditAccount 类继承 Account 类会导致它们之间的耦合度非常高,Account 类发生改变之后会马上影响CreditAccount 类
代码示例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
public class ExtendsTest02{ public static void main(String[] args){ Account act = new Account(); act.setActno("1111111"); act.setBalance(10000); System.out.println(act.getActno() + ",余额" + act.getBalance());
CreditAccount ca = new CreditAccount(); ca.setActno("2222222"); ca.setBalance(-10000); ca.setCredit(0.99); System.out.println(ca.getActno() + ",余额" + ca.getBalance() + ",信誉度" + ca.getCredit()); } }
class Account{ private String actno; private double balance;
public Account(){ } public Account(String actno, double balance){ this.actno = actno; this.balance = balance; }
public void setActno(String actno){ this.actno = actno; } public String getActno(){ return actno; } public void setBalance(double balance){ this.balance = balance; } public double getBalance(){ return balance; } }
class CreditAccount extends Account{
private double credit;
public CreditAccount(){ }
public void doSome(){ System.out.println(getActno()); }
public void setCredit(double credit){ this.credit = credit; } public double getCredit(){ return credit; } }
|