201871010105-曹玉中《面向对象程序设计(java)》第八周学习总结

项目 内容
《面向对象程序设计(java)》 https://www.cnblogs.com/nwnu-daizh/
 这个作业的要求在哪里 https://www.cnblogs.com/nwnu-daizh/p/11654436.html
 作业学习目标

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

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

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

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

(5) 掌握Comparator接口用法;

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

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

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

一:理论部分。

1.接口:Java为了克服单继承的缺点,Java使用了接口,一个类可以实现一个或多接口。(接口不是类,而是对类的一组需求描述,它由常量和一组抽象方法组成)

1)通常,接口名称以able或ible结尾。

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

2)声明方式:public interface 接口名 {  }

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

3)接口中的所有常量必须是public static final,方法必须是public abstract。(系统默认的)

要将类声明为实现某个接口,需要使用关键字implements:class Employee implements Printable

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

5)接口与抽象类的区别:a.接口不能实现任何方法,而抽象类可以

b.一个类只能有一个父类,可以有多个接口

2.接口示例。

1)回调:它一种程序设计模式,可指出某个特定事件发生时程序应该采取的动作。

例如在java。swing包中有一个Timer类,可以使用它在达到给定时间间隔发出通告。

3.Comparator接口(java.util.*包中)的用途:处理字符串按长度进行排序的操作.

4.对象克隆:如果希望copy是一个新对象,它的初始状态与original相同,但是之后他们会有各自不同的状态,这是就可以使用clone方法。

1)clone方法是Object的一个protected方法,如果要调用clone方法,就需要覆盖clone()方法,并将属性设置为public。(在类的clone方法中,调用super.clone())

Object.clone()方法返回一个Object对象,必须进行强制类型转换才能得到需要的类型。

2)浅层拷贝:被拷贝对象的所有常量成员和基本类型属性都有与原来对象相同的拷贝值,而若成员域是一个对象,则被拷贝对象该对象域的对象引用仍然指向原来的对象。
     深层拷贝:被拷贝对象的所有成员域都含有与原来对象相同的值,且对象域将指向被复制过的新对象,而不是原有对象被引用的对象。(要实现深拷贝,必须克隆类中所有的对象实例域。)

5.lambda表达式:本质上是一个匿名方法。

如public int add(intx,int y){return x+y};用lambda表达式表达为:lambda(int x,int y)->x+y;

6.函数式接口:只有一个方法的接口(标注:@FunctionalInterface)

二:实验部分。

1、实验目的与要求

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

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

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

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

(5) 掌握Comparator接口用法;

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

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

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

2、程序测试。

2、实验内容和步骤

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

测试程序1:

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

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

掌握接口的实现用法;

掌握内置接口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:

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

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

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

l 掌握回调程序设计模式;

代码如下:

  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:

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

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

l 掌握对象克隆实现技术;

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

代码如下:

  1. /**
  2. * This program demonstrates cloning.
  3. * @version 1.10 2002-07-01
  4. * @author Cay Horstmann
  5. */
  6. public class CloneTest
  7. {
  8. public static void main(String[] args)
  9. {
  10. try//try子句,后面是有可能会产生错误的代码
  11. {
  12. Employee original = new Employee("John Q. Public", 50000);
  13. original.setHireDay(2000, 1, 1);
  14. Employee copy = original.clone();
  15. copy.raiseSalary(10);
  16. copy.setHireDay(2002, 12, 31);
  17. System.out.println("original=" + original);
  18. System.out.println("copy=" + copy);
  19. }
  20. catch (CloneNotSupportedException e)//没有实现cloneable接口,抛出一个异常
  21. {
  22. e.printStackTrace();
  23. }
  24. }
  25. }

 

  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表达式用法。

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

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

l 将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: 编程练习

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

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

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

l 查询最小年龄人员信息;

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

l 查询人员中是否有你的同乡。

代码如下:

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

  

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

  

运行结果如下:

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

实验程序1:

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

l 了解内部类的基本用法。

代码如下:

  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(interval));
    if (beep) Toolkit.getDefaultToolkit().beep(); }
    }
    }

  运行结果如下:

实验程序2:

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

l 掌握匿名内部类的用法。

代码如下:

  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:

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

了解静态内部类的用法。

代码如下:

  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. var values = new double[20];
  11. for (int i = 0; i < values.length; i++)
  12. values[i] = 100 * Math.random();
  13. ArrayAlg.Pair p = ArrayAlg.minmax(values);
  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单继承的缺点。

在学习过程中,可能是因为接口并不是具体的类,它只是实现,所以感觉接口比继承抽象一些,不太容易理解。但通过这周的学习以及实验中对具体

程序的运行,对接口有了一定的掌握。自己编写饰演的过程中,在之前的基础上有的接口等新内容,自己还是不能独立完成,在同学的帮助下才勉强

完成了实验。在实验课上老师讲的克隆以及函数接口等,自己还没有太掌握,在之后的学习中,一定会继续深入学习。

201871010105-曹玉中《面向对象程序设计(java)》第八周学习总结的更多相关文章

  1. 201771010134杨其菊《面向对象程序设计java》第九周学习总结

                                                                      第九周学习总结 第一部分:理论知识 异常.断言和调试.日志 1.捕获 ...

  2. 201871010132-张潇潇《面向对象程序设计(java)》第一周学习总结

    面向对象程序设计(Java) 博文正文开头 项目 内容 这个作业属于哪个课程 https://www.cnblogs.com/nwnu-daizh/ 这个作业的要求在哪里 https://www.cn ...

  3. 扎西平措 201571030332《面向对象程序设计 Java 》第一周学习总结

    <面向对象程序设计(java)>第一周学习总结 正文开头: 项目 内容 这个作业属于哪个课程 https://www.cnblogs.com/nwnu-daizh/ 这个作业的要求在哪里 ...

  4. 杨其菊201771010134《面向对象程序设计Java》第二周学习总结

    第三章 Java基本程序设计结构 第一部分:(理论知识部分) 本章主要学习:基本内容:数据类型:变量:运算符:类型转换,字符串,输入输出,控制流程,大数值以及数组. 1.基本概念: 1)标识符:由字母 ...

  5. 201871010124 王生涛《面向对象程序设计JAVA》第一周学习总结

    项目 内容 这个作业属于哪个课程 https://www.cnblogs.com/nwnu-daizh/ 这个作业的要求在哪里 https://edu.cnblogs.com/campus/xbsf/ ...

  6. 201871010115——马北《面向对象程序设计JAVA》第二周学习总结

    项目 内容 这个作业属于哪个课程 https://www.cnblogs.com/nwnu-daizh/ 这个作业的要求在哪里 https://www.cnblogs.com/nwnu-daizh/p ...

  7. 201777010217-金云馨《面向对象程序设计(Java)》第二周学习总结

    项目 内容 这个作业属于哪个课程 https://www.cnblogs.com/nwnu-daizh/ 这个作业的要求在哪里 https://www.cnblogs.com/nwnu-daizh/p ...

  8. 201871010132——张潇潇《面向对象程序设计JAVA》第二周学习总结

    项目 内容 这个作业属于哪个课程 https://www.cnblogs.com/nwnu-daizh/ 这个作业的要求在哪里 https://www.cnblogs.com/nwnu-daizh/p ...

  9. 201771010123汪慧和《面向对象程序设计Java》第二周学习总结

    一.理论知识部分 1.标识符由字母.下划线.美元符号和数字组成, 且第一个符号不能为数字.标识符可用作: 类名.变量名.方法名.数组名.文件名等.第二部分:理论知识学习部分 2.关键字就是Java语言 ...

  10. 20155319 2016-2017-2 《Java程序设计》第八周学习总结

    20155319 2016-2017-2 <Java程序设计>第八周学习总结 教材学习内容总结 NIO与NIO2 - NIO使用频道(channel)来衔接数据节点 - read()将Re ...

随机推荐

  1. C++标准库删除字符串中指定字符,比如空格

    参见:https://zh.cppreference.com/w/cpp/algorithm/remove 使用 erase 和 remove 配合. #include <algorithm&g ...

  2. MongoDB概念认识(四)

    1. database 一个mongodb中可以建立多个数据库. MongoDB的默认数据库为"db",该数据库存储在data目录中. MongoDB的单个实例可以容纳多个独立的数 ...

  3. LG3119 「USACO2015JAN」Grass Cownoisseur

    问题描述 LG3119 题解 显然,如果有个环,一定是全部走完的. 所以缩点,缩出一个 \(\mathrm{DAG}\) . 只能走一次反向,于是在正图和反图上各跑一次,枚举边,取 \(\mathrm ...

  4. javaagent的实现

    实现javaagent功能的是一个叫做instrument的JVMTIAgent(linux下对应的动态库是libinstrument.so),另外instrument agent还有个别名叫JPLI ...

  5. Java 虚拟机编程接口JVMIT

    JVMTI(JVM Tool Interface)是 Java 虚拟机所提供的 native 编程接口,是 JVMPI(Java Virtual Machine Profiler Interface) ...

  6. 洛谷P1283 平板涂色 &&一本通1445:平板涂色

    题目描述 CE数码公司开发了一种名为自动涂色机(APM)的产品.它能用预定的颜色给一块由不同尺寸且互不覆盖的矩形构成的平板涂色. 为了涂色,APM需要使用一组刷子.每个刷子涂一种不同的颜色C.APM拿 ...

  7. Win10安装 oracle11g 出现INS-13001环境不满足最低要求解决方法

    Win10安装 oracle11g 出现INS-13001环境不满足最低要求 首先,打开你的解压后的database文件夹,找到stage,然后cvu,找到cvu_prereq.xml文件,用note ...

  8. JavaScript计算日期前一天和后一天

    1.页面排版 <button onclick="before()">上一天</button> <button onclick="after( ...

  9. python Condition

    import threading # 必须要使用condition的例子 # class XiaoAi(threading.Thread):# def __init__(self, lock):# s ...

  10. mysql的sql调优: slow_query_log_file

    mysql有一个功能就是可以log下来运行的比较慢的sql语句,默认是没有这个log的,为了开启这个功能,要修改my.cnf或者在mysql启动的时候加入一些参数.如果在my.cnf里面修改,需增加如 ...