王艳201771010127《面向对象程序设计(java)》第十周学习总结(代码片段)

java-729 java-729     2023-01-14     370

关键词:

一:理论部分。

1.泛型程序设计意味着编写的代码可以被很多不同类型的对象所重用。

1)泛型(参数化类型):在定义类、接口和方法时,通过类型参数指示将要处理的对象类型。如ArrayList类是一个泛型程序设计的实例,可以聚集任何类型的对象。

2)泛型类:就是具有一个或多个类型变量的类,即创建用类型作为参数的类。在<>内定义形式类型参数,该形参表示类型而不表示值。

泛型类可以有多个类型变量,例如:public class Pair<T, U>

类定义中的类型变量用于指定方法的返回类型以及域、局部变量的类型。

3)泛型方法:除了泛型类外,还可以只单独定义一个方法作为泛型方法,用于指定方法参数或者返回值为泛型类型,在方法调用时确定具体需要。(泛型方法可以声明在泛型类中,也可以声明在普通类中)

4)泛型变量的限定:a.泛型变量的上界:如<T extends Number>(extends关键字所声明的上界既可以是一个类,也可以是一个接口,extends并不代表继承,它是类型范围限制。)

                                  b.泛型变量的上界:如<? super CashCard>(通过使用super关键字可以固定泛型参数的类型为某种类型或者其超类当程序希望为一个方法的参数限定类型时,通常可以使用下限通配符)

2.泛型类的约束与局限性。

1)不能用基本类型(如int型,float型等)实例化类型参数
2)运行时类型查询只适用于原始类型
3)不能抛出也不能捕获泛型类实例
4)参数化类型的数组不合法
5)不能实例化类型变量
6)泛型类的静态上下文中类型变量无效
7)注意擦除后的冲突

3.泛型类型的继承规则:Java中的数组是协变的,但这一原理不适用于泛型类型。

泛型类可扩展或实现其它的泛型类。

4.通配符:“?”符号表明参数的类型可以是任何一种类型,而T表示一种未知类型。

通配符的一般用法:a.?:用于表示任何类型;

                                b.? extends type,表示带有上界;

                                c.? super type,表示带有下界。

二:实验部分。

 1、实验目的与要求

(1) 理解泛型概念;

(2) 掌握泛型类的定义与使用;

(3) 掌握泛型方法的声明与使用;

(4) 掌握泛型接口的定义与实现;

(5)了解泛型程序设计,理解其用途。

2、实验内容和步骤

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

测试程序1:

l 编辑、调试、运行教材311、312页 代码,结合程序运行结果理解程序;

l 在泛型类定义及使用代码处添加注释;

l 掌握泛型类的定义及使用。 

程序如下:

/**
 * @version 1.01 2012-01-26
 * @author Cay Horstmann
 */
public class PairTest1

   public static void main(String[] args)
   
      String[] words =  "Mary", "had", "a", "little", "lamb" ;//初始化一个String对象数组
      Pair<String> mm = ArrayAlg.minmax(words);//一对字符串:min,max
      System.out.println("min = " + mm.getFirst());
      System.out.println("max = " + mm.getSecond());
   


class ArrayAlg

   /**
    * Gets the minimum and maximum of an array of strings.
    * @param a an array of strings
    * @return a pair with the min and max value, or null if a is null or empty
    */
   public static Pair<String> minmax(String[] a)//普通方法,定义minmax为字符串类型
   
      if (a == null || a.length == 0) return null;
      String min = a[0];
      String max = a[0];
      //将元素的泛型具体声明
      
      for (int i = 1; i < a.length; i++)//length:数组属性值
      
         if (min.compareTo(a[i]) > 0) min = a[i];
         if (max.compareTo(a[i]) < 0) max = a[i];
      //实现字符串比较大小
      return new Pair<>(min, max);
   
/**
 * @version 1.00 2004-05-10
 * @author Cay Horstmann
 */
public class Pair<T>//类型变量(放在类名后面)

   private T first;
   private T second;

   public Pair()  first = null; second = null; 
   public Pair(T first, T second)  this.first = first;  this.second = second; 

   public T getFirst()  return first; 
   public T getSecond()  return second; 

   public void setFirst(T newValue)  first = newValue; 
   public void setSecond(T newValue)  second = newValue; 

程序运行结果如下:

技术分享图片

测试程序2:

l 编辑、调试运行教材315页 PairTest2,结合程序运行结果理解程序;

l 在泛型程序设计代码处添加相关注释;

l 掌握泛型方法、泛型变量限定的定义及用途。

程序如下:

import java.time.*;

/**
 * @version 1.02 2015-06-21
 * @author Cay Horstmann
 */
public class PairTest2

   public static void main(String[] args)
   
      LocalDate[] birthdays = 
          
            LocalDate.of(1906, 12, 9), // G. Hopper
            LocalDate.of(1815, 12, 10), // A. Lovelace
            LocalDate.of(1903, 12, 3), // J. von Neumann
            LocalDate.of(1910, 6, 22), // K. Zuse
         ;
      Pair<LocalDate> mm = ArrayAlg.minmax(birthdays);
      System.out.println("min = " + mm.getFirst());
      System.out.println("max = " + mm.getSecond());
   


class ArrayAlg

   /**
      Gets the minimum and maximum of an array of objects of type T.
      @param a an array of objects of type T
      @return a pair with the min and max value, or null if a is 
      null or empty
   */
   public static <T extends Comparable> Pair<T> minmax(T[] a) //泛型方法(comparable是T的上界约束)
   
      if (a == null || a.length == 0) return null;
      T min = a[0];
      T max = a[0];//min和max与T的类型一致
      for (int i = 1; i < a.length; i++)
      
         if (min.compareTo(a[i]) > 0) min = a[i];
         if (max.compareTo(a[i]) < 0) max = a[i];
      
      return new Pair<>(min, max);
   
/**
 * @version 1.00 2004-05-10
 * @author Cay Horstmann
 */
public class Pair<T> //类型变量

   private T first;
   private T second;

   public Pair()  first = null; second = null; 
   public Pair(T first, T second)  this.first = first;  this.second = second; 

   public T getFirst()  return first; 
   public T getSecond()  return second; 

   public void setFirst(T newValue)  first = newValue; 
   public void setSecond(T newValue)  second = newValue; 

程序运行结果如下:

技术分享图片

测试程序3:

l 用调试运行教材335页 PairTest3,结合程序运行结果理解程序;

l 了解通配符类型的定义及用途。

程序如下:

/**
 * @version 1.01 2012-01-26
 * @author Cay Horstmann
 */
public class PairTest3

   public static void main(String[] args)
   
      Manager ceo = new Manager("Gus Greedy", 800000, 2003, 12, 15);
      Manager cfo = new Manager("Sid Sneaky", 600000, 2003, 12, 15);
      Pair<Manager> buddies = new Pair<>(ceo, cfo);      
      printBuddies(buddies);

      ceo.setBonus(1000000);
      cfo.setBonus(500000);
      Manager[] managers =  ceo, cfo ;

      Pair<Employee> result = new Pair<>();
      
      
      minmaxBonus(managers, result);
      System.out.println("first: " + result.getFirst().getName() 
         + ", second: " + result.getSecond().getName());
      maxminBonus(managers, result);
      System.out.println("first: " + result.getFirst().getName() 
         + ", second: " + result.getSecond().getName());
   

   public static void printBuddies(Pair<? extends Employee> p)//通配符类型(带有上界)extends关键字所声明的上界既可以是一个类,也可以是一个接口。
   
      Employee first = p.getFirst();
      Employee second = p.getSecond();
      System.out.println(first.getName() + " and " + second.getName() + " are buddies.");
   

   public static void minmaxBonus(Manager[] a, Pair<? super Manager> result)//通配符类型(带有下界)必须是Manager的子类
   
      if (a.length == 0) return;
      Manager min = a[0];
      Manager max = a[0];
      for (int i = 1; i < a.length; i++)
      
         if (min.getBonus() > a[i].getBonus()) min = a[i];
         if (max.getBonus() < a[i].getBonus()) max = a[i];
      //比较大小值
      result.setFirst(min);
      result.setSecond(max);
   

   public static void maxminBonus(Manager[] a, Pair<? super Manager> result)//通配符类型(带有下界)
   
      minmaxBonus(a, result);
      PairAlg.swapHelper(result); //swapHelper捕获通配符类型
   
   //无法编写公共静态< T超级管理器>


class PairAlg

   public static boolean hasNulls(Pair<?> p)//通过将hasNulls转换成泛型方法,避免使用通配符类型
   
      return p.getFirst() == null || p.getSecond() == null;
   

   public static void swap(Pair<?> p)  swapHelper(p); 

   public static <T> void swapHelper(Pair<T> p)//使用辅助方法swapHelper(泛型方法),以在交换时临时保存第一个元素
   
      T t = p.getFirst();
      p.setFirst(p.getSecond());
      p.setSecond(t);
   
/**
 * @version 1.00 2004-05-10
 * @author Cay Horstmann
 */
public class Pair<T> 

   private T first;
   private T second;
//T是未知类型,不代表值
   public Pair()  first = null; second = null; 
   public Pair(T first, T second)  this.first = first;  this.second = second; 

   public T getFirst()  return first; 
   public T getSecond()  return second; 

   public void setFirst(T newValue)  first = newValue; 
   public void setSecond(T newValue)  second = newValue; 
import java.time.*;

public class Employee//用户自定义类
  
   private String name;
   private double salary;
   private LocalDate hireDay;

   public Employee(String name, double salary, int year, int month, int day)
   
      this.name = name;
      this.salary = salary;
      hireDay = LocalDate.of(year, month, day);
   

   public String getName()
   
      return name;
   

   public double getSalary()
     
      return salary;
   

   public LocalDate getHireDay()
     
      return hireDay;
   

   public void raiseSalary(double byPercent)
     
      double raise = salary * byPercent / 100;
      salary += raise;
   
public class Manager extends Employee//继承类
  
   private double bonus;

   /**
      @param name the employee‘s name
      @param salary the salary
      @param year the hire year
      @param month the hire month
      @param day the hire day
   */
   public Manager(String name, double salary, int year, int month, int day)
     
      super(name, salary, year, month, day);
      bonus = 0;
   

   public double getSalary()
    
      double baseSalary = super.getSalary();
      return baseSalary + bonus;
   

   public void setBonus(double b)
     
      bonus = b;
   

   public double getBonus()
     
      return bonus;
   

程序运行结果如下:
技术分享图片

实验2:编程练习:

编程练习1:实验九编程题总结

l 实验九编程练习1总结(从程序总体结构说明、模块说明,目前程序设计存在的困难与问题三个方面阐述)。

程序总体结构:定义了一个主类Test,一个接口。

模块:

import java.io.BufferedReader;
        import java.io.File;
        import java.io.FileInputStream;
        import java.io.FileNotFoundException;
        import java.io.IOException;
        import java.io.InputStreamReader;
        import java.util.ArrayList;
        import java.util.Arrays;
        import java.util.Collections;
        import java.util.Scanner;


public class Test

      private static ArrayList<Person> Personlist1;
       public static void main(String[] args) 
         
          Personlist1 = new ArrayList<>();
         
          Scanner scanner = new Scanner(System.in);
          File file = new File("C:\\Users\\lenovo\\Documents\\身份证");
   
                try 
                     FileInputStream F = new FileInputStream(file);
                     BufferedReader in = new BufferedReader(new InputStreamReader(F));
                     String temp = null;
                     while ((temp = in.readLine()) != null) 
                        
                        Scanner linescanner = new Scanner(temp);
                        
                        linescanner.useDelimiter(" ");    
                        String name = linescanner.next();
                        String id = linescanner.next();
                        String sex = linescanner.next();
                        String age = linescanner.next();
                        String place =linescanner.nextLine();
                        Person Person = new Person();
                        Person.setname(name);
                        Person.setid(id);
                        Person.setsex(sex);
                        int a = Integer.parseInt(age);
                        Person.setage(a);
                        Person.setbirthplace(place);
                        Personlist1.add(Person);

                    
                 catch (FileNotFoundException e) 
                    System.out.println("查找不到信息");
                    e.printStackTrace();
                 catch (IOException e) 
                    System.out.println("信息读取有误");
                    e.printStackTrace();
                
                boolean isTrue = true;
                while (isTrue) 
                    System.out.println("1:按姓名字典序输出人员信息;");
                    System.out.println("2:查询最大年龄与最小年龄人员信息;");
                    System.out.println("3.输入你的年龄,查询身份证号.txt中年龄与你最近人的姓名、身份证号、年龄、性别和出生地");
                    System.out.println("4:按省份找你的同乡;");
                    System.out.println("5:退出");
                    int type = scanner.nextInt();
                    switch (type) 
                    case 1:
                        Collections.sort(Personlist1);
                        System.out.println(Personlist1.toString());
                        break;
                    case 2:
                        
                        int max=0,min=100;int j,k1 = 0,k2=0;
                        for(int i=1;i<Personlist1.size();i++)
                        
                            j=Personlist1.get(i).getage();
                           if(j>max)
                           
                               max=j; 
                               k1=i;
                           
                           if(j<min)
                           
                               min=j; 
                               k2=i;
                           

                          
                        System.out.println("年龄最大:"+Personlist1.get(k1));
                        System.out.println("年龄最小:"+Personlist1.get(k2));
                        break;
                    case 3:
                        System.out.println("place?");
                        String find = scanner.next();        
                        String place=find.substring(0,3);
                        String place2=find.substring(0,3);
                        for (int i = 0; i <Personlist1.size(); i++) 
                        
                            if(Personlist1.get(i).getbirthplace().substring(1,4).equals(place)) 
                            
                                System.out.println("你的同乡:"+Personlist1.get(i));
                            
                         

                        break;
                    case 4:
                        System.out.println("年龄:");
                        int yourage = scanner.nextInt();
                        int close=ageclose(yourage);
                        int d_value=yourage-Personlist1.get(close).getage();
                        System.out.println(""+Personlist1.get(close));
                  
                        break;
                    case 5:
                   isTrue = false;
                   System.out.println("再见!");
                        break;
                    default:
                        System.out.println("输入有误");
                    
                
            
            public static int ageclose(int age) 
                   int m=0;
                int    max=53;
                int d_value=0;
                int k=0;
                for (int i = 0; i < Personlist1.size(); i++)
                
                    d_value=Personlist1.get(i).getage()-age;
                    if(d_value<0) d_value=-d_value; 
                    if (d_value<max) 
                    
                       max=d_value;
                       k=i;
                    

                     return k;
                
             

 

public class Person implements Comparable<Person> 
            private String name;
            private String id;
            private int age;
            private String sex;
            private String birthplace;

    public String getname() 
        return name;
        
    public void setname(String name) 
        this.name = name;
    
    public String getid() 
        return id;
    
    public void setid(String id) 
        this.id= id;
    
    public int getage() 
    
        return age;
    
    public void setage(int age) 
        // int a = Integer.parseInt(age);
        this.age= age;
    
    public String getsex() 
        return sex;
    
    public void setsex(String sex) 
        this.sex= sex;
    
    public String getbirthplace() 
        return birthplace;
    
    public void setbirthplace(String birthplace) 
        this.birthplace= birthplace;


    public int compareTo(Person o) 
        return this.name.compareTo(o.getname());



    public String toString() 
        return  name+"	"+sex+"	"+age+"	"+id+"	";


目前程序设计存在的困难与问题:

1)对一些知识理解不到位,不能很好地将理论知识应用到程序编写中。

2)当程序中处出现异常时,处理方式最多只能应用抛出异常这种消极方式。

3)分不清如何使用字符流和字节流。

 

l 实验九编程练习2总结(从程序总体结构说明、模块说明,目前程序设计存在的困难与问题三个方面阐述)。

 程序总体结构:一个主类Demo,一个用户自定义类Number

模块:

import java.util.Scanner;
import java.io.FileNotFoundException;
import java.io.PrintWriter;
import java.util.Random;

public class Demo 
    public static void main(String[] args) 

        Scanner in = new Scanner(System.in);
        Number counter = new Number();
        PrintWriter out = null;
        try 
            out = new PrintWriter("text.txt");
         catch (FileNotFoundException e) 
            // TODO Auto-generated catch block
            e.printStackTrace();
        
        int sum = 0;

        for (int i = 1; i <= 10; i++) 

            int a = (int) Math.round(Math.random() * 100);
            int b = (int) Math.round(Math.random() * 100);
            int m = (int) Math.round(Math.random() * 3);
            Random n = new Random();

            switch (m) 
            case 0:
                System.out.println(i + ": " + a + "/" + b + "=");

                while (b == 0) 
                    b = (int) Math.round(Math.random() * 100);
                

                int c = in.nextInt();
                out.println(a + "/" + b + "=" + c);
                if (c == counter.division(a, b)) 
                    sum += 10;
                    System.out.println("恭喜答案正确");
                 else 
                    System.out.println("抱歉,答案错误");
                

                break;

            case 1:
                System.out.println(i + ": " + a + "*" + b + "=");
                int c1 = in.nextInt();
                out.println(a + "*" + b + "=" + c1);
                if (c1 == counter.multiplication(a, b)) 
                    sum += 10;
                    System.out.println("恭喜答案正确");
                 else 
                    System.out.println("抱歉,答案错误");
                
                break;
            case 2:
                System.out.println(i + ": " + a + "+" + b + "=");
                int c2 = in.nextInt();
                out.println(a + "+" + b + "=" + c2);
                if (c2 == counter.add(a, b)) 
                    sum += 10;
                    System.out.println("恭喜答案正确");
                 else 
                    System.out.println("抱歉,答案错误");
                

                break;
            case 3:
                System.out.println(i + ": " + a + "-" + b + "=");
                int c3 = in.nextInt();
                out.println(a + "-" + b + "=" + c3);
                if (c3 == counter.reduce(a, b)) 
                    sum += 10;
                    System.out.println("恭喜答案正确");
                 else 
                    System.out.println("抱歉,答案错误");
                
                break;

            

        
        System.out.println("成绩" + sum);
        out.println("成绩:" + sum);
        out.close();

    
public class Number 
    private int a;
    private int b;

    public int add(int a, int b) 
        return a + b;
    

    public int reduce(int a, int b) 
        return a - b;
    

    public int multiplication(int a, int b) 
        return a * b;
    

    public int division(int a, int b) 
        if (b != 0)
            return a / b;
        else
            return 0;
    

目前程序设计存在的困难与问题:

1)没有考虑到除法运算中运算结果为小数小数以及除数为0的情况。

2)找不到文件保存路径,只能通过电脑搜索获得,对文件的理解还不到位。

3)对异常的调试还存在很大的问题。

编程练习2:采用泛型程序设计技术改进实验九编程练习2,使之可处理实数四则运算,其他要求不变。

程序如下:

 

package Demo;

import java.io.FileNotFoundException;
import java.io.PrintWriter;
import java.util.Random;
import java.util.Scanner;

public class Demo 
    public static void main(String[] args) 

        Scanner in = new Scanner(System.in);
        Number counter = new Number();
        PrintWriter out = null;
        try 
            out = new PrintWriter("test.txt");
         catch (FileNotFoundException e) 
            System.out.println("Error!");
            e.printStackTrace();
        

        int sum = 0;
      

        for (int i = 1; i <= 10; i++) 
            int a = (int) Math.round(Math.random() * 100);
            int b = (int) Math.round(Math.random() * 100);
            int m;
            Random rand = new Random();
            m = (int) rand.nextInt(4) + 1;


            switch (m) 
            case 1:
                a = b + (int) Math.round(Math.random() * 100);
                while(b == 0)
                    b = (int) Math.round(Math.random() * 100);
                
                while(a % b != 0)
                    a = (int) Math.round(Math.random() * 100);
                    
                
                //a大于b,a%b为0(保证能整除)
                System.out.println(i + ": " + a + "/" + b + "=");

                int c0 = in.nextInt();
                out.println(a + "/" + b + "=" + c0);
                if (c0 == counter.division(a, b)) 
                    sum += 10;
                    System.out.println("恭喜答案正确!");
                 else 
                    System.out.println("抱歉答案错误!");
                

                break;

            case 2:
                System.out.println(i + ": " + a + "*" + b + "=");
                int c = in.nextInt();
                out.println(a + "*" + b + "=" + c);
                if (c == counter.multiplication(a, b)) 
                    sum += 10;
                    System.out.println("恭喜答案正确!");
                 else 
                    System.out.println("抱歉答案错误!");
                
                break;
            case 3:
                System.out.println(i + ": " + a + "+" + b + "=");
                int c1 = in.nextInt();
                out.println(a + "+" + b + "=" + c1);
                if (c1 == counter.add(a, b)) 
                    sum += 10;
                    System.out.println("恭喜答案正确!");
                 else 
                    System.out.println("抱歉答案错误!");
                
                break;
            case 4:
                while (a < b) 
                    b = (int) Math.round(Math.random() * 100);
                
                 //若a<b,则重新生成b(避免出现负数)
                System.out.println(i + ": " + a + "-" + b + "=");
                int c2 = in.nextInt();
                out.println(a + "-" + b + "=" + c2);
                if (c2 == counter.reduce(a, b)) 
                    sum += 10;
                    System.out.println("恭喜答案正确!");
                 else 
                    System.out.println("抱歉答案错误!");
                
                break;
            
        
        System.out.println("成绩" + sum);
        out.println("成绩:" + sum);
        out.close();
    

 

package Demo;

public class Number<T> 
    private T a;
    private T b;

    public Number() 
        a = null;
        b = null;
    
    public Number(T a, T b) 
        this.a = a;
        this.b = b;
    
          
    public int add(int a,int b) 
        return a + b;
    

    public int reduce(int a, int b) 
        return a - b;
    

    public int multiplication(int a, int b) 
        return a * b;
    

    public int division(int a, int b) 
        if (b != 0 && a%b==0)
            return a / b;
        else
            return 0;
    

程序运行结果如下:

技术分享图片

三:实验总结。

        这周主要学习了泛型程序,泛型类和泛型方法同时具备可重用性、类型安全和效率,泛型类不会强行对值类型进行装箱和拆箱,或对引用类型进行向下强制类型转换,所以是编程性能得到提高。在学习理论课时,听老师讲泛型类不算特别难,但在实验课上运行程序时,并不是太理解程序,经过老师和学长的讲解,对程序有了一定程度的理解,但是也只是基本能读懂程序,在自己编程时,还是有很大问题。在之后的学习中,我会多练习程序去了解这些知识,争取能够独立完整的编写程序。








王艳201771010127《面向对象程序设计(java)》第四周学习总结(代码片段)

第一部分:理论知识。第四章:对象与类4.1:类与对象的概念。类:是构造对象的模板或蓝图。由类构造对象的过程称为创建类的实例。对象:想要使用oop,一定要清楚对象的三个特性:1)对象的行为:对象的行为使用可调用... 查看详情

王艳201771010127《面向对象程序设计(java)》第三周学习总结

一:理论知识总结:第一章:主要概述了java相比其他程序设计语言(如C语言、c++)之间的不同性能。为我们揭示了java这种语言的设计初衷一节截至目前java语言达到的效果。另外,还简要介绍了java的诞生和发展历程。第二章:... 查看详情

王艳201771010127《面向对象程序设计(java)》第七周学习总结(代码片段)

1、实验目的与要求(1)进一步理解4个成员访问权限修饰符的用途; (2)掌握Object类的常用API用法;(3)掌握ArrayList类用法与常用API;(4)掌握枚举类使用方法;(5)结合本章知识,理解继承与多态性两个面向对象程序... 查看详情

王艳201771010127《面向对象程序设计(java)》第十三周学习总结(代码片段)

一:理论部分。1.事件处理基础。1)事件源:能够产生事件的对象都可以成为事件源,如文本框、按钮等。一个事件源是一个能够注册监听器并向监听器发送事件对象的对象。2)事件监听器:事件监听器对象接收事件源发送的... 查看详情

王艳201771010127《面向对象程序设计(java)》第十周学习总结(代码片段)

一:理论部分。1.泛型程序设计意味着编写的代码可以被很多不同类型的对象所重用。1)泛型(参数化类型):在定义类、接口和方法时,通过类型参数指示将要处理的对象类型。如ArrayList类是一个泛型程序设计的实例,可以聚... 查看详情

王艳201771010127《面向对象程序设计(java)》第八周学习总结(代码片段)

  一:理论部分。1.接口:Java为了克服单继承的缺点,Java使用了接口,一个类可以实现一个或多接口。(接口不是类,而是对类的一组需求描述,它由常量和一组抽象方法组成)1)通常,接口名称以able或ible结尾。接口... 查看详情

王艳201771010127《面向对象程序设计(java)》第十一周学习总结(代码片段)

一:理论部分。1.数据结构:分为a.线性数据结构,如线性表、栈、队列、串、数组和文件。             b.非线性数据结构,如树和图。1)所有数据元素在同一个线性表中必须是相... 查看详情

王艳201771010127《面向对象程序设计(java)》第六周学习总结(代码片段)

  实验六继承定义与使用一:理论部分:第五章:继承类。1.继承:已有类来构建新类的一种机制。档定义了一个新类继承另一个类时,这个新类就继承了这个类的方法和域,同时在新类中添加新的方法和域以适应新的情... 查看详情

王艳《面向对象程序设计》第十五周学习总结(代码片段)

实验十五  GUI编程练习与应用程序部署一:理论部分。1.Java程序的打包:编译完成后,程序员将.class文件压缩打包为.jar文件后,GUI界面序就可以直接双击图标运行。JAR文件是压缩的,它使用ZIP压缩格式。创建一个包含清... 查看详情

08-面向对象----j

一面向对象的程序设计的由来请参考:http://www.cnblogs.com/linhaifeng/articles/6428835.html二什么是面向对象的程序设计及为什么要有它面向过程的程序设计的核心是过程,过程即解决问题的步骤,面向过程的设计就好比精心设计好一条... 查看详情

2020面向对象设计与构造第三单元博客总结(代码片段)

面向对象设计与构造第三单元总结一、JML规格化设计JML,全称TheJavaModelingLanguage,是用于对Java程序进行规格化描述的注释性质语言。笔者在本文总结了常见的JML语法描述。1.注释结构在注释行或注释块中,以@开头的行被认作JML注... 查看详情

面向对象

老王和隔壁的美女猜数字,一共有四次机会,猜到了就有特殊奖励publicclasstest{publicstaticvoidmain(String[]args){inti=(int)(Math.random()*10);Scannerinput=newScanner(System.in);for(intj=0;j<4;j++){System.out.println("老王第"+(j+1)+"次 查看详情

201771010126王燕《面向对象程序设计(java)》第二周学习总结

201771010126王燕《面向对象程序设计(java)》第二周学习总结一.理论知识学习部分3.1j简单的java应用程序标识符由字母、下划线、美元符号和数字组成,且第一个符号不能为数字。标识符可用作:类名、变量名、方法名、数组名... 查看详情

201823072019-2020-1《数据结构与面向对象程序设计》实验1报告

课程:《程序设计与数据结构》班级:1823姓名:王美皓学号:20182322实验教师:王美皓实验日期:2019年9月9日必修/选修:必修1.实验内容基于命令行和IDE(IntelljIDEA简易教程](http://www.cnblogs.com/rocedu/p/4421202.html)进行简单的Java程... 查看详情

杨其菊201771010134《面向对象程序设计(java)》第三周学习总结(代码片段)

  《面向对象程序设计(Java)》第三周学习总结第一部分:理论知识 这周课程没有新进度,由于感觉对基础语法的不熟悉,复习了一遍前三章的细碎知识,学到一些之前不知道的原理: 1.计算机高级语言按程序的... 查看详情

c++面向对象的主要体现是啥?

...得对我有用的话,我会再追加分。)C++面向对象是表现在程序设计的过程上,它是突破了C的结构化设计而出现的完全以实际问题为入手点的。C++的面向对象3个特性:1.封装。2.继承。3.多态。尤其重要的是,它采用类的设计,杜... 查看详情

徐思201771010132《面向对象程序设计(java)》第十二周学习总结(代码片段)

一、理论知识部分Java的抽象窗口工具箱(AbstractWindowToolkit,AWT)包含在java.awt包中,它提供了许多用来设计GUI的组件类和容器类。大部分AWT组件都有其Swing的等价组件,Swing组件的名字一般是在AWT组件名前面添加一个字母“J”。通... 查看详情

201771010110孔维滢《面向对象程序设计(java)》第十二周学习总结

理论知识部分1.Java的抽象窗口工具箱(AbstractWindowToolkit,AWT)包含在java.awt包中,它提供了许多用来设计GUI的组件类和容器类。2.Swing用户界面库是非基于对等体的GUI工具箱。Swing类库被放在javax.swing包里。3.大部分AWT组件都有其Swing... 查看详情