• 201871010133赵永军《面向对象程序设计(java)》第八周学习总结


    201871010133-赵永军《面向对象程序设计(java)》第八周学习总结

    项目
    内容
    这个作业属于哪个课程 https://www.cnblogs.com/nwnu-daizh/
    这个作业的要求在哪里 https://www.cnblogs.com/nwnu-daizh/p/11703678.html
    作业学习目标
    1. 掌握接口定义方法;
    2. 掌握实现接口类的定义要求;
    3. 掌握实现了接口类的使用要求;
    4. 理解程序回调设计模式;
    5. 掌握Comparator接口用法;
    6. 掌握对象浅层拷贝与深层拷贝方法;
    7. 掌握Lambda表达式语法;
    8. 了解内部类的用途及语法要求。

     

     

     

     

     

     

     

     

     

     

     

     

     

    第一部分:总结第六章理论知识

    1. 接口
     1) Java为了克服单继承的缺点,Java使用了接口, 一个类可以实现一个或多个接口。

     2) 在Java程序设计语言中,接口不是类,而是对类 的一组需求描述,由常量和一组抽象方法组成。

     3) 接口中不包括变量和有具体实现的方法。

     4) 只要类实现了接口,则该类要遵从接口描述的统 一格式进行定义,并且可以在任何需要该接口的 地方使用这个类的对象。

     5)声明方式: public interface 接口名 { …… }   接口体中包含常量定义和方法定义,接口中只进 行方法的声明,不提供方法的实现。

     6)类似建立类的继承关系,接口也可以扩展。 接口的扩展技术使得从具有较高通用性的接口存在 多条链延伸到具有较高专用性的接口。

       扩展方法: public   interface  接口1   extends接口2 {    ……           }

     7)在类声明时用implements关键字声明使用一个或 多个接口

        class Employee implementsPrintable { …… } 

       一个类使用了某个接口,那么这个类必须实现该 接口的所有方法,即为这些方法提供方法体。 一个类可以实现多个接口,接口间应该用逗号分 隔开。

        class Employee implements Cloneable,Comparable

     8)接口不能构造接口对象,但可以声明接口变量以指向一个实现了该接口的类对象。

        Comparablex = new Comparable(…);       //ERROR

        Comparable  x= new Employee(…);     //OK

       可以用instanceof检查对象是否实现了某个接口。

         if  (anObjectinstanceofComparable) {   ……} 

    2. 接口与抽象类的区别:

    (1)接口不能实现任何方法,而抽象类可以。

    (2)类可以实现许多接口,但只有一个父类。

    (3)接口不是类分级结构的一部分,无任何联系的类可以实现相同的接口。

    3. 回调(callback):一种程序设计模式,在这种模式中,可指出某个特定事件发生时程序应该采取的动作。 在java.swing包中有一个Timer类,可以使用它在到达给定的时间间隔时触发一个事件。

                         Timer(intinterval, ActionListenerlistener)

            void start()

            void stop()

    4. Object类的Clone方法

         1)当拷贝一个对象变量时,原始变量与拷贝变量引用同一个对象。这样,改变一个变量所引用 的对象会对另一个变量产生影响。
         2)如果要创建一个对象新的copy,它的最初状态与 original一样,但以后可以各自改变状态,就需要使用Object类的clone方法。

    5. 浅层拷贝:被拷贝对象的所有常量成员和基本类 型属性都有与原来对象相同的拷贝值,而若成员域是一个对象,则被拷贝对象该对象域的对象引 用仍然指向原来的对象。

     深层拷贝:被拷贝对象的所有成员域都含有与原 来对象相同的值,且对象域将指向被复制过的新对 象,而不是原有对象被引用的对象。换言之,深 层拷贝将拷贝对象内引用的对象也拷贝一遍。

    6. Java Lambda 表达式是Java 8 引入的一个新的功能,主要用途是提供一个函数化的语法来简化编码。 Lambda表达式本质上是一个匿名方法。

      public intadd(intx, inty) { return x + y; } 转成Lambda表达式后是: (intx, inty) -> x + y; 

    7.内部类(inner class)是定义在一个类内部的类。 外层的类成为外部类(outer class).

       内部类主要用于事件处理。 使用内部类的原因有以下三个:

     1)内部类方法可以访问该类定义所在的作用域中的数据,包括私有数据。

     2)内部类能够隐藏起来,不为同一包中的其他类所见。

     3)想要定义一个回调函数且不想编写大量代码时, 使用匿名内部类比较便捷。 

    第二部分:实验部分

    1、实验目的与要求

    (1) 掌握接口定义方法;

    (2) 掌握实现接口类的定义要求;

    (3) 掌握实现了接口类的使用要求;

    (4) 掌握程序回调设计模式;

    (5) 掌握Comparator接口用法;

    (6) 掌握对象浅层拷贝与深层拷贝方法;

    (7) 掌握Lambda表达式语法;

    (8) 了解内部类的用途及语法要求。

    2、实验内容和步骤

    实验1 导入第6章示例程序,测试程序并进行代码注释。

    测试程序1:

    1)编辑、编译、调试运行阅读教材214页-215页程序6-1、6-2,理解程序并分析程序运行结果;

    2)在程序中相关代码处添加新知识的注释。

    3)掌握接口的实现用法;

    4)掌握内置接口Compareable的用法。

    实验程序如下:

     1 import java.util.*;
     2 
     3 /**
     4  * This program demonstrates the use of the Comparable interface.
     5  * @version 1.30 2004-02-27
     6  * @author Cay Horstmann
     7  */
     8 public class EmployeeSortTest
     9 {
    10    public static void main(String[] args)
    11    {
    12       Employee[] staff = new Employee[3];
    13 
    14       staff[0] = new Employee("Harry Hacker", 35000);
    15       staff[1] = new Employee("Carl Cracker", 75000);
    16       staff[2] = new Employee("Tony Tester", 38000);
    17 
    18       Arrays.sort(staff);//调用Arrays类的sort方法(只有被static方法修饰了才可以这样调用)
    19 
    20       //输出所有employee对象的信息
    21       for (Employee e : staff)
    22          System.out.println("name=" + e.getName() + ",salary=" + e.getSalary());
    23    }
    24 }

     用户自定义模块:

     1 public class Employee implements Comparable<Employee>//实现接口类
     2 {
     3    private String name;
     4    private double salary;
     5 
     6    public Employee(String name, double salary)
     7    {
     8       this.name = name;
     9       this.salary = salary;
    10    }
    11 
    12    public String getName()
    13    {
    14       return name;
    15    }
    16 
    17    public double getSalary()
    18    {
    19       return salary;
    20    }
    21 
    22    public void raiseSalary(double byPercent)
    23    {
    24       double raise = salary * byPercent / 100;
    25       salary += raise;
    26    }
    27 
    28    /**
    29     * Compares employees by salary
    30     * @param other another Employee object
    31     * @return a negative value if this employee has a lower salary than
    32     * otherObject, 0 if the salaries are the same, a positive value otherwise
    33     */
    34    public int compareTo(Employee other)//比较Employee与其他对象的大小
    35    {
    36       return Double.compare(salary, other.salary);//调用double的compare方法
    37    }
    38 }

     程序运行结果如下:

    测试程序2:

    l 编辑、编译、调试以下程序,结合程序运行结果理解程序;

    interface  A

    {

      double g=9.8;

      void show( );

    }

    class C implements A

    {

      public void show( )

      {System.out.println("g="+g);}

    }

     

    class InterfaceTest

    {

      public static void main(String[ ] args)

      {

           A a=new C( );

           a.show( );

           System.out.println("g="+C.g);

      }

    }

    实验程序如下:

     1 interface  A//接口A
     2 {
     3   double g=9.8;
     4   void show( );
     5 }
     6 class C implements A//C实现接口A
     7 {
     8   public void show( )
     9   {System.out.println("g="+g);}
    10 }
    11 class InterfaceTest
    12 {
    13   public static void main(String[ ] args)
    14   {
    15        A a=new C( );
    16        a.show( );
    17        System.out.println("g="+C.g);//C实现了接口A,所以可以用C调用A中的变量
    18   }
    19 }

    程序运行结果如下:

    测试程序3:

    1)在elipse IDE中调试运行教材223页6-3,结合程序运行结果理解程序;

    2)26行、36行代码参阅224页,详细内容涉及教材12章。

    3)在程序中相关代码处添加新知识的注释。

    4)掌握回调程序设计模式;

    实验程序如下:

     1 /**
     2    @version 1.01 2015-05-12
     3    @author Cay Horstmann
     4 */
     5 
     6 import java.awt.*;
     7 import java.awt.event.*;
     8 import java.util.*;
     9 import javax.swing.*;
    10 import javax.swing.Timer; 
    11 // to resolve conflict with java.util.Timer
    12 
    13 public class TimerTest
    14 {  
    15    public static void main(String[] args)
    16    {  
    17       ActionListener listener = new TimePrinter();//实现ActionListener类接口
    18 
    19       //创建一个名为listener的timer数组
    20       // 每十秒钟一次
    21       Timer t = new Timer(10000, listener);//生成内置类对象
    22       t.start();//调用t中的start方法
    23 
    24       JOptionPane.showMessageDialog(null, "Quit program?");//窗口显示信息“Quit program?”
    25       System.exit(0);
    26    }
    27 }
    28 
    29 class TimePrinter implements ActionListener//用户自定义类:实现接口
    30 {  
    31    public void actionPerformed(ActionEvent event)
    32    {  
    33       System.out.println("At the tone, the time is " + new Date());
    34       Toolkit.getDefaultToolkit().beep();//返回Toolkit方法,借助Toolkit对象控制响铃
    35    }
    36 }

    程序测试结果如下:

    测试程序4:

    1)调试运行教材229页-231页程序6-4、6-5,结合程序运行结果理解程序;

    2)在程序中相关代码处添加新知识的注释。

    3)掌握对象克隆实现技术;

    4)掌握浅拷贝和深拷贝的差别。

     实验程序如下:

     1 import java.util.Date;
     2 import java.util.GregorianCalendar;
     3 
     4 public class Employee implements Cloneable
     5 {
     6    private String name;
     7    private double salary;
     8    private Date hireDay;
     9 
    10    public Employee(String name, double salary)
    11    {
    12       this.name = name;
    13       this.salary = salary;
    14       hireDay = new Date();
    15    }
    16 
    17    public Employee clone() throws CloneNotSupportedException
    18    {
    19       // 调用对象克隆
    20       Employee cloned = (Employee) super.clone();
    21 
    22       // 克隆易变字段
    23       cloned.hireDay = (Date) hireDay.clone();
    24 
    25       return cloned;
    26    }//可能产生异常,放在try子句中
    27 
    28    /**
    29     * Set the hire day to a given date. 
    30     * @param year the year of the hire day
    31     * @param month the month of the hire day
    32     * @param day the day of the hire day
    33     */
    34    public void setHireDay(int year, int month, int day)
    35    {
    36       Date newHireDay = new GregorianCalendar(year, month - 1, day).getTime();
    37       
    38       // 实例字段突变
    39       hireDay.setTime(newHireDay.getTime());
    40    }
    41 
    42    public void raiseSalary(double byPercent)
    43    {
    44       double raise = salary * byPercent / 100;
    45       salary += raise;
    46    }
    47 
    48    public String toString()
    49    {
    50       return "Employee[name=" + name + ",salary=" + salary + ",hireDay=" + hireDay + "]";
    51    }
    52 }

    程序测试结果如下:

    实验2 导入第6章示例程序6-6,学习Lambda表达式用法。

    1)调试运行教材233页-234页程序6-6,结合程序运行结果理解程序;

    2)在程序中相关代码处添加新知识的注释。

    3)将27-29行代码与教材223页程序对比,将27-29行代码与此程序对比,体会Lambda表达式的优点。

    实验程序如下:

     1 import java.util.*;
     2 
     3 import javax.swing.*;
     4 import javax.swing.Timer;
     5 
     6 /**
     7  * This program demonstrates the use of lambda expressions.
     8  * @version 1.0 2015-05-12
     9  * @author Cay Horstmann
    10  */
    11 public class LambdaTest
    12 {
    13    public static void main(String[] args)
    14    {
    15       String[] planets = new String[] { "Mercury", "Venus", "Earth", "Mars", 
    16             "Jupiter", "Saturn", "Uranus", "Neptune" };
    17       System.out.println(Arrays.toString(planets));
    18       System.out.println("Sorted in dictionary order:");
    19       Arrays.sort(planets);//调用Arrays类的sort方法
    20       System.out.println(Arrays.toString(planets));
    21       System.out.println("Sorted by length:");
    22       Arrays.sort(planets, (first, second) -> first.length() - second.length());//lambda表达式
    23       System.out.println(Arrays.toString(planets));
    24             
    25       Timer t = new Timer(1000, event ->
    26          System.out.println("The time is " + new Date()));
    27       t.start();   
    28          
    29       // keep program running until user selects "Ok"
    30       JOptionPane.showMessageDialog(null, "Quit program?");//窗口显示信息“Quit program?”
    31       System.exit(0);         
    32    }
    33 }

    程序运行结果如下:

    注:以下实验课后完成

    实验3: 编程练习

    1)编制一个程序,将身份证号.txt 中的信息读入到内存中;

    2)按姓名字典序输出人员信息;

    3)查询最大年龄的人员信息;

    4)查询最小年龄人员信息;

    5)输入你的年龄,查询身份证号.txt中年龄与你最近人的姓名、身份证号、年龄、性别和出生地;

    6)查询人员中是否有你的同乡

    实验代码如下:

      1 import java.io.BufferedReader;
      2         import java.io.File;
      3         import java.io.FileInputStream;
      4         import java.io.FileNotFoundException;
      5         import java.io.IOException;
      6         import java.io.InputStreamReader;
      7         import java.util.ArrayList;
      8         import java.util.Arrays;
      9         import java.util.Collections;
     10         import java.util.Scanner;
     11 
     12 
     13 public class Test{
     14 
     15       private static ArrayList<Person> Personlist1;
     16        public static void main(String[] args) {
     17          
     18           Personlist1 = new ArrayList<>();
     19          
     20           Scanner scanner = new Scanner(System.in);
     21           File file = new File("C:\\Users\\lenovo\\Documents\\身份证");
     22    
     23                 try {
     24                      FileInputStream F = new FileInputStream(file);
     25                      BufferedReader in = new BufferedReader(new InputStreamReader(F));
     26                      String temp = null;
     27                      while ((temp = in.readLine()) != null) {
     28                         
     29                         Scanner linescanner = new Scanner(temp);
     30                         
     31                         linescanner.useDelimiter(" ");    
     32                         String name = linescanner.next();
     33                         String id = linescanner.next();
     34                         String sex = linescanner.next();
     35                         String age = linescanner.next();
     36                         String place =linescanner.nextLine();
     37                         Person Person = new Person();
     38                         Person.setname(name);
     39                         Person.setid(id);
     40                         Person.setsex(sex);
     41                         int a = Integer.parseInt(age);
     42                         Person.setage(a);
     43                         Person.setbirthplace(place);
     44                         Personlist1.add(Person);
     45 
     46                     }
     47                 } catch (FileNotFoundException e) {
     48                     System.out.println("查找不到信息");
     49                     e.printStackTrace();
     50                 } catch (IOException e) {
     51                     System.out.println("信息读取有误");
     52                     e.printStackTrace();
     53                 }
     54                 boolean isTrue = true;
     55                 while (isTrue) {
     56                     System.out.println("1:按姓名字典序输出人员信息;");
     57                     System.out.println("2:查询最大年龄与最小年龄人员信息;");
     58                     System.out.println("3.输入你的年龄,查询身份证号.txt中年龄与你最近人的姓名、身份证号、年龄、性别和出生地");
     59                     System.out.println("4:按省份找你的同乡;");
     60                     System.out.println("5:退出");
     61                     int type = scanner.nextInt();
     62                     switch (type) {
     63                     case 1:
     64                         Collections.sort(Personlist1);
     65                         System.out.println(Personlist1.toString());
     66                         break;
     67                     case 2:
     68                         
     69                         int max=0,min=100;int j,k1 = 0,k2=0;
     70                         for(int i=1;i<Personlist1.size();i++)
     71                         {
     72                             j=Personlist1.get(i).getage();
     73                            if(j>max)
     74                            {
     75                                max=j; 
     76                                k1=i;
     77                            }
     78                            if(j<min)
     79                            {
     80                                min=j; 
     81                                k2=i;
     82                            }
     83 
     84                         }  
     85                         System.out.println("年龄最大:"+Personlist1.get(k1));
     86                         System.out.println("年龄最小:"+Personlist1.get(k2));
     87                         break;
     88                     case 3:
     89                         System.out.println("place?");
     90                         String find = scanner.next();        
     91                         String place=find.substring(0,3);
     92                         String place2=find.substring(0,3);
     93                         for (int i = 0; i <Personlist1.size(); i++) 
     94                         {
     95                             if(Personlist1.get(i).getbirthplace().substring(1,4).equals(place)) 
     96                             {
     97                                 System.out.println("你的同乡:"+Personlist1.get(i));
     98                             }
     99                         } 
    100 
    101                         break;
    102                     case 4:
    103                         System.out.println("年龄:");
    104                         int yourage = scanner.nextInt();
    105                         int close=ageclose(yourage);
    106                         int d_value=yourage-Personlist1.get(close).getage();
    107                         System.out.println(""+Personlist1.get(close));
    108                   
    109                         break;
    110                     case 5:
    111                    isTrue = false;
    112                    System.out.println("再见!");
    113                         break;
    114                     default:
    115                         System.out.println("输入有误");
    116                     }
    117                 }
    118             }
    119             public static int ageclose(int age) {
    120                    int m=0;
    121                 int    max=53;
    122                 int d_value=0;
    123                 int k=0;
    124                 for (int i = 0; i < Personlist1.size(); i++)
    125                 {
    126                     d_value=Personlist1.get(i).getage()-age;
    127                     if(d_value<0) d_value=-d_value; 
    128                     if (d_value<max) 
    129                     {
    130                        max=d_value;
    131                        k=i;
    132                     }
    133 
    134                  }    return k;
    135                 
    136              }
    137 }


    1
    public class Person implements Comparable<Person> { 2 private String name; 3 private String id; 4 private int age; 5 private String sex; 6 private String birthplace; 7 8 public String getname() { 9 return name; 10 } 11 public void setname(String name) { 12 this.name = name; 13 } 14 public String getid() { 15 return id; 16 } 17 public void setid(String id) { 18 this.id= id; 19 } 20 public int getage() { 21 22 return age; 23 } 24 public void setage(int age) { 25 // int a = Integer.parseInt(age); 26 this.age= age; 27 } 28 public String getsex() { 29 return sex; 30 } 31 public void setsex(String sex) { 32 this.sex= sex; 33 } 34 public String getbirthplace() { 35 return birthplace; 36 } 37 public void setbirthplace(String birthplace) { 38 this.birthplace= birthplace; 39 } 40 41 public int compareTo(Person o) { 42 return this.name.compareTo(o.getname()); 43 44 } 45 46 public String toString() { 47 return name+"\t"+sex+"\t"+age+"\t"+id+"\t"; 48 49 } 50 }

    程序运行结果如下:

     

    实验4:内部类语法验证实验

    实验程序1:

    1)编辑、调试运行教材246页-247页程序6-7,结合程序运行结果理解程序;

    2)了解内部类的基本用法。

    实验程序如下:

     1 import java.awt.*;
     2 import java.awt.event.*;
     3 import java.util.*;
     4 import javax.swing.*;
     5 import javax.swing.Timer;
     6 
     7 /**
     8  * This program demonstrates the use of inner classes.
     9  * @version 1.11 2015-05-12
    10  * @author Cay Horstmann
    11  */
    12 public class InnerClassTest
    13 {
    14    public static void main(String[] args)
    15    {
    16       TalkingClock clock = new TalkingClock(1000, true);
    17       clock.start();
    18 
    19       // keep program running until user selects "Ok"
    20       JOptionPane.showMessageDialog(null, "Quit program?");
    21       System.exit(0);
    22    }
    23 }
    24 
    25 /**
    26  * A clock that prints the time in regular intervals.
    27  */
    28 class TalkingClock
    29 {
    30    private int interval;
    31    private boolean beep;
    32 
    33    /**
    34     * Constructs a talking clock
    35     * @param interval the interval between messages (in milliseconds)
    36     * @param beep true if the clock should beep
    37     */
    38    public TalkingClock(int interval, boolean beep)
    39    {
    40       this.interval = interval;
    41       this.beep = beep;
    42    }
    43 
    44    /**
    45     * Starts the clock.
    46     */
    47    public void start()
    48    {
    49       ActionListener listener = new TimePrinter();
    50       Timer t = new Timer(interval, listener);
    51       t.start();
    52    }
    53 
    54    public class TimePrinter implements ActionListener
    55    {
    56       public void actionPerformed(ActionEvent event)
    57       {
    58          System.out.println("At the tone, the time is " + new Date());
    59          if (beep) Toolkit.getDefaultToolkit().beep();
    60       }
    61    }
    62 }

    程序运行结果如下:

    实验程序2:

    1)编辑、调试运行教材254页程序6-8,结合程序运行结果理解程序;

    2)掌握匿名内部类的用法。

    实验程序如下:

     1 import java.awt.*;
     2 import java.awt.event.*;
     3 import java.util.*;
     4 import javax.swing.*;
     5 import javax.swing.Timer;
     6 
     7 /**
     8  * This program demonstrates anonymous inner classes.
     9  * @version 1.11 2015-05-12
    10  * @author Cay Horstmann
    11  */
    12 public class AnonymousInnerClassTest
    13 {
    14    public static void main(String[] args)
    15    {
    16       TalkingClock clock = new TalkingClock();
    17       clock.start(1000, true);
    18 
    19       // keep program running until user selects "Ok"
    20       JOptionPane.showMessageDialog(null, "Quit program?");
    21       System.exit(0);
    22    }
    23 }
    24 
    25 /**
    26  * A clock that prints the time in regular intervals.
    27  */
    28 class TalkingClock
    29 {
    30    /**
    31     * Starts the clock.
    32     * @param interval the interval between messages (in milliseconds)
    33     * @param beep true if the clock should beep
    34     */
    35    public void start(int interval, boolean beep)
    36    {
    37       ActionListener listener = new ActionListener()
    38          {
    39             public void actionPerformed(ActionEvent event)
    40             {
    41                System.out.println("At the tone, the time is " + new Date());
    42                if (beep) Toolkit.getDefaultToolkit().beep();
    43             }
    44          };
    45       Timer t = new Timer(interval, listener);
    46       t.start();
    47    }
    48 }

    程序运行结果如下;

    实验程序3:

    1)在elipse IDE中调试运行教材257页-258页程序6-9,结合程序运行结果理解程序;

    2)了解静态内部类的用法。

    实验程序如下:

     1 /**
     2  * This program demonstrates the use of static inner classes.
     3  * @version 1.02 2015-05-12
     4  * @author Cay Horstmann
     5  */
     6 public class StaticInnerClassTest
     7 {
     8    public static void main(String[] args)
     9    {
    10       double[] d = new double[20];
    11       for (int i = 0; i < d.length; i++)
    12          d[i] = 100 * Math.random();
    13       ArrayAlg.Pair p = ArrayAlg.minmax(d);
    14       System.out.println("min = " + p.getFirst());
    15       System.out.println("max = " + p.getSecond());
    16    }
    17 }
    18 
    19 class ArrayAlg
    20 {
    21    /**
    22     * A pair of floating-point numbers
    23     */
    24    public static class Pair
    25    {
    26       private double first;
    27       private double second;
    28 
    29       /**
    30        * Constructs a pair from two floating-point numbers
    31        * @param f the first number
    32        * @param s the second number
    33        */
    34       public Pair(double f, double s)
    35       {
    36          first = f;
    37          second = s;
    38       }
    39 
    40       /**
    41        * Returns the first number of the pair
    42        * @return the first number
    43        */
    44       public double getFirst()
    45       {
    46          return first;
    47       }
    48 
    49       /**
    50        * Returns the second number of the pair
    51        * @return the second number
    52        */
    53       public double getSecond()
    54       {
    55          return second;
    56       }
    57    }
    58 
    59    /**
    60     * Computes both the minimum and the maximum of an array
    61     * @param values an array of floating-point numbers
    62     * @return a pair whose first element is the minimum and whose second element
    63     * is the maximum
    64     */
    65    public static Pair minmax(double[] values)
    66    {
    67       double min = Double.POSITIVE_INFINITY;
    68       double max = Double.NEGATIVE_INFINITY;
    69       for (double v : values)
    70       {
    71          if (min > v) min = v;
    72          if (max < v) max = v;
    73       }
    74       return new Pair(min, max);
    75    }
    76 }

    程序运行结果如下:

     第三部分;实验总结

    在本周的学习过程中,主要了解了接口,接口和继承在某些方面比较相似,但是接口又在继承的基础上发展了一些优点,克服了java单继承的缺点。在学习过程中,可能是因为接口并不是具体的类,它只是实现,所以感觉接口比继承抽象一些,不太容易理解。但通过这周的学习以及实验中对具体程序的运行,对接口有了一定的掌握。自己编写饰演的过程中,在之前的基础上有的接口等新内容,自己还是不能独立完成,在同学的帮助下才勉强完成了实验。在实验课上老师讲的克隆以及函数接口等,自己还没有太掌握,在之后的学习中,一定会继续深入学习。

     

  • 相关阅读:
    pikachu---RCE
    pikachu---SQL注入(2)
    pikachu---SQL注入(1)
    pikachu---CSRF
    Pikachu:XSS-盲打、过滤、htmlspecialchars、href与js输出
    xss搭建,cookie获取,钓鱼,键盘记录
    pikachu ------xss漏洞(几中类型简单的介绍)
    验证码绕过
    破解版BrupSuite安装及其问题解决及环境部署
    Pikachu的暴力破解演示-----基于表单的暴力破解
  • 原文地址:https://www.cnblogs.com/zhaoyongjun0911/p/11707691.html
Copyright © 2020-2023  润新知