zoukankan      html  css  js  c++  java
  • Java基础之面向对象上

    4 面向对象上

    image-20201120111229284

    学习面向对象内容的三条主线:

    1. java类及类的成员:属性、方法、构造器、代码块、内部类

    2. 面向对象的三大特征:继承、封装、多态、(抽象性)

    3. 其他关键字:this、super、static、final、abstract、interface、package、import等

    4.1 面向过程(POP)与面向对象(OOP)

    面向对象: Object Oriented Programming

    面向过程: Procedure Oriented Programming

    • 二者都是一种思想,面向对象是相对于面向过程而言的。面向过程,强调的是功能行为,以函数为最小单位,考虑怎么做。面向对象,将功能封装进对象,强调具备了功能的对象,以类/对象为最小单位,考虑谁来做。

    • 面向对象更加强调运用人类在日常的思维逻辑中采用的思想方法与原则,如抽象、分类、继承、聚合、多态等。

    • 面向对象的三大特征:

      封装(Encapsulation)
      继承(lnheritance)
      多态(Polymorphism)
      

    面向对象的思想概述:

    • 程序员从面向过程的执行者转化成了面向对象的指挥者

    • 面向对象分析方法分析问题的思路和步骤:

      1. 根据问题需要,选择问题所针对的现实世界中的实体。
      2. 从实体中寻找解决问题相关的属性和功能,这些属性和功能就形成了概念世界中的类。
      3. 把抽象的实体用计算机语言进行描述,形成计算机世界中类的定义。即借助某种程序语言,把类构造成计算机能够识别和处理的数据结构。
      4. 将类实例化成计算机世界中的对象,对象是计算机世界中解决问题的最终工具。
      

    4.2 java语言的基本元素:类和对象

    (1)类 (Class)和对象 (Object )是面向对象的核心概念。

    • 类是对 一类事物的描述 ,是抽象的、概念上的定义 ;

    • 对象是实际存在的该类事物的每个个体,因而也称为实例 (instance) 。

    (2)“万事万物皆对象”

    • 在Java语言范畴中,我们都将功能、结构等封装到类中,通过类的实例化,来调用具体的功能结构

      Scanner, String等
      文件:File
      网络资源:URL

    • 涉及到Java语言与前端Html、后端的数据库交互时,前后端的结构在Java层面交互时,都体现为类、对象。

    例子如下:

    image-20201120162209272

    (3)java类及类的成员

    现实世界的生物体,大到鲸鱼,小到蚂蚁,都是由最基本的细胞构成的。同理,Java代码世界是由诸多个不同功能的类构成的。

    现实生物世界中的细胞又是由什么构成的呢?细胞核、细胞质、....那么,Java中用类class来描述事物也是如此。常见的类的成员有:

    • 属性:对应类中的成员变量
    • 行为:对应类中的成员方法

    image-20201120163339384

    下面为类的成员构成实际例子:

    image-20201120163501957

    (3)类的语法格式

    image-20201120163859269

    4.3 对象的创建和使用

    (1)对象的创建和使用

    image-20201121160456087

    image-20201121160800043

    image-20201121160840323

    image-20201121161624009

    image-20201121161756556

    image-20201121162540032

    image-20201121162903814

    (2)内存解析

    image-20201121163414068

    例子:

    image-20201121163706698

    (3)内存解析小测试

    image-20201121163800234

    image-20201121201940283

    (4)匿名对象

    image-20201121202206655

    4.4 类的成员

    (1)属性(filed)

    image-20201122163005842

    image-20201122163051027

    image-20201122163242475

    image-20201122163311468

    image-20201122163510760

    (2)方法(method)

    image-20201122163617674

    image-20201122163718112

    image-20201122163736815

    image-20201122163850589

    image-20201122163954055

    • 小测试

    image-20201122164525626

    image-20201122164537390

    4.6 再谈方法

    (1)方法的重载

    • 重载的概念:
      在同一个类中,允许存在一个以上的同名方法,只要它们的参数个数或者参数类型不同即可。

      两同一不同:同一个类、相同方法名;参数列表不同、参数个数不同、参数类型不同

    • 重载的特点︰
      与返回值类型无关,权限修饰符、形参变量名、方法体都没有关系。只看参数列表,且参数列表必须不同。调用时,根据方法参数列表的不同来区别。

    • 重载示例︰

      int add(int x,int y){return x+y;} //返回两个整数的和
      
      int add(int x,int y,int z){return x+y+z;} //返回三个整数的和
      
      double add(double x,double y){return x+y;} //返回两个小数的和
      
    public class PrintStream {
    	public static void print(int i) {.......]
    	public static void print(float f) {.......]
    	public static void print( String s){.......]
    	
    	public static void main(String[] args) {
    		print(3);
    		print(1.2f);
    		print ( "hello!");
    	}
    }
    

    image-20201123094012790

    image-20201123094301179

    (2)可变形参的方法

    JavaSE 5.0中提供了Varargs(variable number of arguments)机制,允许直接定义能和多个实参相匹配的形参。从而,可以用一种更简单的方式,来传递个数可变的实参。

    JDK 5.0以前:采用数组形参来定义方法,传入多个同一类型变量

    public static void test(int a ,String[]books);
    

    JDK5.0:采用可变个数形参来定义方法,传入多个同一类型变量

    public static void test(int a ,String...books);
    

    可变形参具体使用规则:

    • 可变个数形参的格式:数据类型 ... 变量名
    • 当调用可变个数形参的方法时,传入的参数个数可以是:0个,1个,2个,。。。
    • 可变个数形参的方法与本类中方法名相同,形参不同的方法之间构成重载
    • 可变个数形参的方法与本类中方法名相同,形参类型也相同的数组之间不构成重载。换句话说,二者不能共存。即可变形参与数组形参不能共存。
    • 可变个数形参在方法的形参声明中,必须声明在末尾,即形参必须放在方法声明最末尾的位置。
    • 可变个数形参在方法的形参中,最多只能声明一个可变形参。即方法声明中只能有一个形参,以免编译器混淆。

    例子:

    image-20201123095442651

    (3)方法参数的值传递机制(重点,难点)

    image-20201123095604943

    • 基本数据类型的参数传递例子1:

    image-20201123095932484

    • 引用数据类型的参数传递例子2:

    image-20201123095957336

    image-20201123100033671

    • 引用数据类型的参数传递例子3:

    image-20201123160312904

    image-20201123160502466

    • 基本数据类型的参数传递例子4:
    public class TransferTest1 {
    	public void swap(int a, int b) {
    		int temp = a;
    		a = b;
    		b = temp;
    		System.out.println("swap方法里,a的值是" + a + ";b的值是" + b);
    	}
    	
    	public static void main(String[] args) {
    		// TODO Auto-generated method stub
    		TransferTest1 test = new TransferTest1();
    		int a = 5;
    		int b = 10;
    		test.swap(a,b);
    		System.out.println("交换结束后,a的值是" + a + ";b的值是" + b);
    	}
    }
    
    结果:
    swap方法里,a的值是10;b的值是5
    交换结束后,a的值是5;b的值是10
    
    • 基本数据类型的参数传递例子5:内存解析

    image-20201123163024824

    • 混合数据类型的参数传递例子6
    public class TransferTest2 {
    	public static void main(String args[]) {
    		TransferTest2 test = new TransferTest2();
    		test.first();
    	}
    
    	public void first() {
    		int i = 5;
    		Value v = new Value();
    		v.i = 25;
    		second(v, i);
    		System.out.println(v.i);
    	}
    	
    	public void second(Value v, int i) {
    		i = 0;
    		v.i = 20;
    		Value val = new Value();
    		v = val;
    		System.out.println(v.i + " " + i);
    	}
    }
    
    class Value {
    	int i = 15;
    }
    
    输出结果:
    15,0
    20
    

    image-20201123164402825

    网红面试题:

    image-20201124231041814

    参考答案:

    public static void method(int a, int b){
        a = a*10;
        b = b*20;
        System.out.println(a);
        System.out.println(b);
        System.exit(O);
    }
    

    (4)递归方法

    image-20201124231402476

    image-20201125134815082

    image-20201125095223732

    4.7 面向对象特征之一:封装与隐藏

    image-20201125101442095

    image-20201125105155145

    image-20201125105219562

    image-20201125105253312

    image-20201125105517995

    • Java规定的4种权限(从小到大排列): private、缺省、protected .public
    • 4种权限可以用来修饰类及类的内部结构:属性、方法、构造器、内部类
    • 具体的,4种权限都可以用来修饰类的内部结构:属性、方法、构造器、内部类

    image-20201125105535195

    4.8 类的成员之三:构造器(或构造方法)

    image-20201125110250157

    image-20201125110434860

    image-20201125110552798

    构造器重载

    image-20201125111955010

    image-20201125112029754

    总结:属性赋值过程

    image-20201125112221920

    拓展知识:JavaBean

    image-20201125112350963

    image-20201125112441082

    拓展知识:UML类图

    image-20201125112820619

    4.9 this关键字的使用

    image-20201125113018477

    image-20201125113615648

    image-20201125120251703

    注意:

    • 可以在类的构造器中使用"this(形参列表)"的方式,调用本类中重载的其他的构造器!
    • 明确:构造器中不能通过"this(形参列表)"的方式调用自身构造器,如果一个类中声明了n个构造器,则最多有n-1个构造器中使用了"this(形参列表)"
    • "this(形参列表)"必须声明在类的构造器的首行!
    • 在类的一个构造器中,最多只能声明一个"this(形参列表)"

    4.10 package、import关键字的使用

    关键字——package

    image-20201125231034799

    image-20201125231541378

    image-20201125231559262

    image-20201125231707498

    image-20201125231751221

    image-20201125231916692

    关键字——import

    image-20201125232158487

    image-20201125232208772

    4.11 面向对象综合练习

    exercise 3

    1、写一个名为Account的类模拟账户。该类的属性和方法如下图所示。该类包括的属性:账号id,余额balance,年利率annuallnterestRate;包含的方法:访问器方法(getter和 setter方法),取款方法 withdraw(),存款方法 deposit()。

    image-20201126151606493

    提示:在提款方法 withdraw 中,需要判断用户余额是否能够满足提款数额的要求,如果不能,应给出提示。

    Account类

    package oop.exercise.exer3;
    
    public class Account {
    	private int id;
    	private double balance; //余额
    	private double annualInterestRate; //年利率
    	
    	public Account(int id, double balance, double annualInterestRate) {
    		this.id = id;
    		this.balance = balance;
    		this.annualInterestRate = annualInterestRate;
    	}
    	
    	public int getId() {
    		return this.id;
    	}
    	
    	public double getBalance() {
    		return this.balance;
    	}
    	
    	public double getAnnualInterestRate() {
    		return this.annualInterestRate;
    	}
    	
    	public void setId(int id) {
    		this.id = id;
    	}
    	
    	public void setBalance(double balance) {
    		this.balance = balance;
    	}
    	
    	public void setAnnualInterestRate(double annualInterestRate) {
    		this.annualInterestRate = annualInterestRate;
    	}
    	
    	public void withdraw(double amount) {
    		if (this.balance >= amount) {
    			this.balance -= amount;
    			System.out.printf("成功取出:%.1f 元
    ",amount);
    		}
    		else 
    			System.out.println("余额不足,取款失败");
    	}
    	
    	public void deposit(double amount) {
    		if (amount > 0) {
    			this.balance += amount;
    			System.out.printf("成功存入:%.1f 元
    ",amount);
    		}
    	}
    }
    
    

    2、创建Customer类

    a. 声明三个私有对象属性: firstName、lastName和account。

    b. 声明一个公有构造器,这个构造器带有两个代表对象属性的参数(f和I)

    c. 声明两个公有存取器来访问该对象属性,方法getFirstName和getLastName返回相应的属性。

    d. 声明setAccount方法来对account属性赋值。

    e.声明getAccount方法以获取account属性。

    image-20201126152351818

    Customer类

    package oop.exercise.exer3;
    
    public class Customer {
    	private String firstName;
    	private String lastName;
    	private Account account;
    	
    	public Customer(String fisrtName,String lastName) {
    		this.firstName = fisrtName;
    		this.lastName = lastName;
    	}
    	
    	public String getFirstName() {
    		return this.firstName;
    	}
    	
    	public String getLastName() {
    		return this.lastName;
    	}
    	
    	public Account getAccount() {
    		return this.account;
    	}
    	
    	public void setAccount(Account account) {
    		this.account = account;
    	}
    }
    
    

    3、写一个测试程序。

    (1) 创建一个Customer ,名字叫Jane Smith,他有一个账号为1000,余额为2000元,年利率为1.23%的账户。

    (2)对Jane Smith 操作。存入100元,再取出960元。再取出2000元。打印出Jane Smith 的基本信息。

    package oop.exercise.exer3;
    
    public class AccountCustomer {
    
    	public static void main(String[] args) {
    		Customer jane = new Customer("Jane","Smith");
    		jane.setAccount(new Account(1000, 2000.0, 0.0123));
    		jane.getAccount().deposit(100.0);
    		jane.getAccount().withdraw(960.0);
    		jane.getAccount().withdraw(2000.0);
    		System.out.printf("Customer [%s, %s] has a account: id is %d, annualInterestRate is %.4f, balance is %.1f",jane.getFirstName(),jane.getLastName(),jane.getAccount().getId(),jane.getAccount().getAnnualInterestRate(),jane.getAccount().getBalance());
    		
    	}
    }
    

    reference

    https://www.bilibili.com/video/BV1Kb411W75N?p=236

    exercise 3

    1、按照如下的UML类图,创建相应的类,提供必要的结构

    image-20201127084157810

    在提款方法withdraw()中,需要判断用户余额是否能够满足提款数额的要求,如果不能,应给出提示。deposit()方法表示存款。

    package oop.exercise.exer4;
    
    public class Account {
    	private double balance; //余额
    	
    	public Account(double init_balance) {
    		this.balance = init_balance;
    	}
    		
    	public double getBalance() {
    		return this.balance;
    	}
    	
    	public void withdraw(double amount) {
    		if (this.balance >= amount) {
    			this.balance -= amount;
    			System.out.printf("成功取出:%.1f 元
    ",amount);
    		}
    		else 
    			System.out.println("余额不足,取款失败");
    	}
    	
    	public void deposit(double amount) {
    		if (amount > 0) {
    			this.balance += amount;
    			System.out.printf("成功存入:%.1f 元
    ",amount);
    		}
    	}
    }
    

    2、按照如下的UML类图,创建相应的类,提供必要的结构

    image-20201127084609028

    package oop.exercise.exer4;
    
    public class Customer {
    	private String firstName;
    	private String lastName;
    	private Account account;
    	
    	public Customer(String firstName,String lastName) {
    		this.firstName = firstName;
    		this.lastName = lastName;
    	}
    	
    	public String getFirstName() {
    		return this.firstName;
    	}
    	
    	public String getLastName() {
    		return this.lastName;
    	}
    	
    	public Account getAccount() {
    		return this.account;
    	}
    	
    	public void setAccount(Account account) {
    		this.account = account;
    	}
    }
    

    3、按照如下的UML类图,创建相应的类,提供必要的结构

    image-20201127084719301

    • addCustomer 方法必须依照参数(姓,名)构造一个新的Customer 对象,然后把它放到customer 数组中。还必须把numberOfCustomer 属性的值加1。
    • getNumOfCustomers 方法返回numberofCustomers属性值。
    • getCustomer 方法返回与给出的index参数相关的客户。
    package oop.exercise.exer4;
    
    public class Bank {
    	private Customer[] customers;
    	private int numberOfCustomer;
    	
    	public Bank() {
    		customers = new Customer[10];
    	}
    	
    	public void addCustomer(String firstName, String lastName) {
    		Customer cust = new Customer(firstName, lastName);
    		customers[numberOfCustomer++] = cust;
    	}
    	
    	public int getNumberOfCustomers() {
    		return this.numberOfCustomer;
    	}
    	
    	public Customer getCustomer(int index) {
    		if (index >=0 && index < this.numberOfCustomer)
    			return customers[index];
    		else
    			return null;
    	}
    }
    

    4、创建BankTest类,进行测试。

    package oop.exercise.exer4;
    
    public class BankTest {
    
    	public static void main(String[] args) {
    		Bank b = new Bank();
    		b.addCustomer("Jane", "Smith");
    		b.getCustomer(0).setAccount(new Account(2000));
    		b.getCustomer(0).getAccount().withdraw(500);
    		double balance = b.getCustomer(0).getAccount().getBalance();
    		System.out.printf("客户:%s 的账户余额为%.1f 元
    ",b.getCustomer(0).getFirstName(),balance);
    		b.addCustomer("Tom", "Green");
    		b.addCustomer("Joe", "Birden");
    		System.out.printf("银行的客户数量为:%d ",b.getNumberOfCustomers());
    	}
    }
    

    reference

    https://www.bilibili.com/video/BV1Kb411W75N?p=237

  • 相关阅读:
    jar与war包区别,转自https://www.jianshu.com/p/3b5c45e8e5bd
    关于spring
    关于 SQL 的操作
    IDEA 创建一个完整maven项目
    用 eclipse 生成 maven 项目快速生成 web.xml 文件
    Spring拦截器中@Value无效的解决办法
    错误:java.lang.IllegalArgumentException: An invalid character [34] was present in the Cookie value
    错误:Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.7:resources (default-resources) on project sea rch-zk-increment-monitor: Mark invalid -> [Help 1]
    错误:Caused by: org.apache.http.conn.ConnectTimeoutException: Connect to localhost:8761 timed out
    关于 Spring 的示例
  • 原文地址:https://www.cnblogs.com/victorxiao/p/14046163.html
Copyright © 2011-2022 走看看