达拉草201771010105《面向对象程序设计(java)》第六周学习总结

第一部分:理论知识

1.类、超类和子类

类继承的格式: class 新类名extends已有类名
一般来说,子类比超类拥有的功能更加丰富

super是一个指示编译器调用超类方法的特有关键字, 它不是一个对象的引用,不能将super赋给另一个对 象变量。super关键字一般有两个用途:一是调用超 类的方法(格式:super.方法名()),二是调用 超类的构造器(格式:super())。

继承层次:从一个超类扩展而来的类集合称为继承层次 。在继承层次中,从 某个类到其祖先的路径被称为该类的继承链 。 Java不支持多继承。

多态性的概念;多态性泛指在程序中同一个符号在不同的情况 下具有不同解释的现象。 超类中定义的域或方法,被子类继承之后,可 以具有不同的数据类型或表现出不同的行为。这使得同一个域或方法在超类及其各个子类中 具有不同的语义。 超类中的方法在子类中可方法重写。

动态绑定:又称为运行时绑定。意思是说,程序在运行时 会自动选择调用哪个方法。

阻止继承:Final类和方法

不允许继承的类称为final类,在类的定义中用final修饰 符加以说明。如果一个类声明为final,属于它的方法会被自动设为 final,但不包括域(如果域定义为final,在对象构造以 后,final域就不能再修改了)。String类是final类的一个例子。不能扩展该类。

强制类型转换:如果要把一个超类对象赋给一个子类对象变量,就必须进 行强制类型转换。其格式为: 子类对象=(子类)(超类对象)

抽象类:

a.为了提高程序的清晰度,包含一个或多个抽象方法 的类本身必须被声明为抽象类。除了抽象方法之外 ,抽象类还可以包含具体数据和具体方法。

b.抽象方法充当着占位的角色,它们的具体实现在子 类中。扩展抽象类可以有两种选择:一种是在子类 中实现部分抽象方法,这样就必须将子类也标记为 抽象类;另一种是实现全部抽象方法,这样子类就 可以不是抽象类。此外,类即使不含抽象方法,也 可以将类声明为抽象类。

c.抽象类不能被实例化,即不能创建对象,只能产生 子类。可以创建抽象类的对象变量,只是这个变量 必须指向它的非抽象子类的对象。

2. Object:所有类的超类

Object类是Java中所有类的祖先——每一个类都由它扩 展而来。在不给出超类的情况下,Java会自动把Object 作为要定义类的超类。

可以使用类型为Object的变量指向任意类型的对象。但 要对它们进行专门的操作都要进行类型转换。

equals方法:定义子类的equals方法时,可调用超类的equals方法。 super.equals(otherObject)

hashCode方法:Object类中的hashCode方法导出某个对象的散列 码。散列码是任意整数,表示对象的存储地址。 两个相等对象的散列码相等。

3. 泛型数组列表

Java中,利用ArrayList类,可允许程序在运行 时确定数组的大小。ArryList是一个采用类型参数的泛型类。为指定 数组列表保存元素的对象类型,需要用一对尖括 号将数组元素对象类名括起来加在后面。
数组列表的操作:
a.ArrayList定义  b.添加新元素  c.统计个数  d.调整大小  e.访问  f.增加与删除

4.参数数量可变的方法

用户自己可以定义可变参数的方法,并将参数指 定为任意类型,甚至是基本类型。

5. 枚举类

声明枚举类 publicenumGrade{A,B,C,D,E}; 它包括一个关键字enum,一个新枚举类型的名字 Grade以及为Grade定义的一组值,这里的值既 非整型,亦非字符型。
声明枚举类
枚举类说明 –枚举类是一个类,它的隐含超类是java.lang.Enum。 枚举值并不是整数或其它类型,是被声明的枚举类的 自身实例,例如A是Grade的一个实例。 枚举类不能有public修饰的构造函数,构造函数都是 隐含private,编译器自动处理。 –枚举值隐含都是由public、static、final修饰的,无 须自己添加这些修饰符。 在比较两个枚举类型的值时,永远不需要调用equals 方法,直接使用"=="进行相等比较。

第二部分:实验部分

实验六继承定义与使用

实验时间 2018-9-28

1、实验目的与要求

(1) 理解继承的定义;

(2) 掌握子类的定义要求

(3) 掌握多态性的概念及用法;

(4) 掌握抽象类的定义及用途;

(5) 掌握类中4个成员访问权限修饰符的用途;

(6) 掌握抽象类的定义方法及用途;

(7)掌握Object类的用途及常用API;

(8) 掌握ArrayList类的定义方法及用法;

(9) 掌握枚举类定义方法及用途。

2、实验内容和步骤

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

测试程序1:

Ÿ   在elipse IDE中编辑、调试、运行程序5-1 (教材152页-153页) ;

Ÿ   掌握子类的定义及用法;

Ÿ   结合程序运行结果,理解并总结OO风格程序构造特点,理解Employee和Manager类的关系子类的用途,并在代码中添加注释。

1.ManagerTest类

 package inheritance;

 /**
* This program demonstrates inheritance.
* @version 1.21 2004-02-21
* @author Cay Horstmann
*/
public class ManagerTest
{
public static void main(String[] args)
{
// construct a Manager object
Manager boss = new Manager("Carl Cracker", 80000, 1987, 12, 15);
boss.setBonus(5000); Employee[] staff = new Employee[3];//构造了一个Employee数组 // fill the staff array with Manager and Employee objects staff[0] = boss;//父类对象变量可以引用子类对象
staff[1] = new Employee("Harry Hacker", 50000, 1989, 10, 1);
staff[2] = new Employee("Tommy Tester", 40000, 1990, 3, 15);
//生成三个雇员对象 // print out information about all Employee objects
for (Employee e : staff)
System.out.println("name=" + e.getName() + ",salary=" + e.getSalary());
}
}

2.Employee类

 package inheritance;

 import java.time.*;

 public class Employee
{
private String name;//private定义了一个只能在该类中访问的字符串变量
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;
}
}

3.Manager类

 package inheritance;

 public class Manager extends Employee//扩展了一个子类Manager
{
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;
}//更改器
}

实验结果:

测试程序2:

Ÿ   编辑、编译、调试运行教材PersonTest程序(教材163页-165页);

Ÿ   掌握超类的定义及其使用要求;

Ÿ   掌握利用超类扩展子类的要求;

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

1.PersonTest类

 package abstractClasses;

 /**
* This program demonstrates abstract classes.
* @version 1.01 2004-02-21
* @author Cay Horstmann
*/
public class PersonTest
{
public static void main(String[] args)
{
Person[] people = new Person[2];//构造了一个Person数组 // fill the people array with Student and Employee objects
people[0] = new Employee("Harry Hacker", 50000, 1989, 10, 1);
people[1] = new Student("Maria Morris", "computer science");
//将Employee和Student对象填充到Person引用数组 // print out names and descriptions of all Person objects
for (Person p : people)
System.out.println(p.getName() + ", " + p.getDescription());
//打印所有Person对象的名称和描述
}
}

2.Person类

 package abstractClasses;

 public abstract class Person
{
public abstract String getDescription();//定义抽象类型Person
private String name; public Person(String name)
{
this.name = name;//将局部变量的值赋给成员变量
}
//为子类Person类的构造器提供代码的构造器 public String getName()
{
return name;
}//访问器
}

3.Employee类

 package abstractClasses;

 import java.time.*;

 public class Employee extends Person//扩展了一个子类Person
{
private double salary;
private LocalDate hireDay; public Employee(String name, double salary, int year, int month, int day)//定义变量
{
super(name);//调用了父类的构造器
this.salary = salary;
hireDay = LocalDate.of(year, month, day);//hireDay使用LocalDate的方法
} public double getSalary()
{
return salary;
} public LocalDate getHireDay()
{
return hireDay;
} public String getDescription()
{
return String.format("an employee with a salary of $%.2f", salary);
} public void raiseSalary(double byPercent)
{
double raise = salary * byPercent / 100;
salary += raise;
}
}

4.Student类

 package abstractClasses;

 public class Student extends Person//扩展了一个子类Student
{
private String major; /**
* @param nama the student's name
* @param major the student's major
*/
public Student(String name, String major)
{
// pass n to superclass constructor
//构造函数
super(name);
this.major = major;
} public String getDescription()
{
return "a student majoring in " + major;
}
}

实验结果:

测试程序3:

Ÿ   编辑、编译、调试运行教材程序5-8、5-9、5-10,结合程序运行结果理解程序(教材174页-177页);

Ÿ   掌握Object类的定义及用法;

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

1.EqualsTest类

 package equals;

 /**
* This program demonstrates the equals method.
* @version 1.12 2012-01-26
* @author Cay Horstmann
*/
public class EqualsTest
{
public static void main(String[] args)
{
Employee alice1 = new Employee("Alice Adams", 75000, 1987, 12, 15);
Employee alice2 = alice1;
Employee alice3 = new Employee("Alice Adams", 75000, 1987, 12, 15);
Employee bob = new Employee("Bob Brandson", 50000, 1989, 10, 1); System.out.println("alice1 == alice2: " + (alice1 == alice2)); System.out.println("alice1 == alice3: " + (alice1 == alice3)); System.out.println("alice1.equals(alice3): " + alice1.equals(alice3)); System.out.println("alice1.equals(bob): " + alice1.equals(bob)); System.out.println("bob.toString(): " + bob); Manager carl = new Manager("Carl Cracker", 80000, 1987, 12, 15);
Manager boss = new Manager("Carl Cracker", 80000, 1987, 12, 15);
boss.setBonus(5000);
System.out.println("boss.toString(): " + boss);
System.out.println("carl.equals(boss): " + carl.equals(boss));
System.out.println("alice1.hashCode(): " + alice1.hashCode());
System.out.println("alice3.hashCode(): " + alice3.hashCode());
System.out.println("bob.hashCode(): " + bob.hashCode());
System.out.println("carl.hashCode(): " + carl.hashCode());
}
}

2.Employee类

 package equals;

 import java.time.*;
import java.util.Objects; public class Employee
{
private String name;//private定义了一个只能在该类中访问的字符串变量
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 boolean equals(Object otherObject)
{
// 快速测试这些对象是否相同
if (this == otherObject) return true; // 如果显示参数为空,必须返回flase
if (otherObject == null) return false; // 如果几个类不匹配,则他们不相同
if (getClass() != otherObject.getClass()) return false; // 其他对象为非空Employee类
Employee other = (Employee) otherObject; // 测试是不是有相同值
return Objects.equals(name, other.name) && salary == other.salary && Objects.equals(hireDay, other.hireDay);
} public int hashCode()
{
return Objects.hash(name, salary, hireDay);
} public String toString()//把其他类型的数据转换为字符串类型的数据
{
return getClass().getName() + "[name=" + name + ",salary=" + salary + ",hireDay=" + hireDay
+ "]";
}
}

3.Manager类

 package equals;

 public class Manager extends Employee//扩展了一个子类Manager
{
private double bonus;//创建一个私有属性 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 bonus)//更改器
{
this.bonus = bonus;
} public boolean equals(Object otherObject)
{
if (!super.equals(otherObject)) return false;
Manager other = (Manager) otherObject;
// 用super.equals检查这个类和其他类是否属于同一个类
return bonus == other.bonus;
} public int hashCode()
{
return java.util.Objects.hash(super.hashCode(), bonus);
} public String toString()//把其他类型的数据转换为字符串类型的数据
{
return super.toString() + "[bonus=" + bonus + "]";
}
}

实验结果:

测试程序4:

Ÿ   在elipse IDE中调试运行程序5-11(教材182页),结合程序运行结果理解程序;

Ÿ   掌握ArrayList类的定义及用法;

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

1.ArrayList

 package arrayList;

 import java.util.*;

 /**
* This program demonstrates the ArrayList class.
* @version 1.11 2012-01-26
* @author Cay Horstmann
*/
public class ArrayListTest
{
public static void main(String[] args)
{
// 用三个Employee类填充staff数组列表
ArrayList<Employee> staff = new ArrayList<>();//构造了一个ArrayList数组 staff.add(new Employee("Carl Cracker", 75000, 1987, 12, 15));
staff.add(new Employee("Harry Hacker", 50000, 1989, 10, 1));
staff.add(new Employee("Tony Tester", 40000, 1990, 3, 15)); // raise everyone's salary by 5%
for (Employee e : staff)
e.raiseSalary(5); //打印出所有Employee类的信息
for (Employee e : staff)
System.out.println("name=" + e.getName() + ",salary=" + e.getSalary() + ",hireDay="
+ e.getHireDay());
}
}

2.Employee类

 package arrayList;

 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;
}
}

实验结果:

测试程序5:

Ÿ   编辑、编译、调试运行程序5-12(教材189页),结合运行结果理解程序;

Ÿ   掌握枚举类的定义及用法;

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

 package enums;

 import java.util.*;

 /**
* This program demonstrates enumerated types.
* @version 1.0 2004-05-24
* @author Cay Horstmann
*/
public class EnumTest
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.print("Enter a size: (SMALL, MEDIUM, LARGE, EXTRA_LARGE) ");
String input = in.next().toUpperCase();
Size size = Enum.valueOf(Size.class, input);
System.out.println("size=" + size);
System.out.println("abbreviation=" + size.getAbbreviation());
if (size == Size.EXTRA_LARGE)
System.out.println("Good job--you paid attention to the _.");
}
} enum Size//枚举类型
{
SMALL("S"), MEDIUM("M"), LARGE("L"), EXTRA_LARGE("XL"); private Size(String abbreviation) { this.abbreviation = abbreviation; }
public String getAbbreviation() { return abbreviation; } private String abbreviation;
}

实验2编程练习1

Ÿ   定义抽象类Shape:

属性:不可变常量double PI,值为3.14;

方法:public double getPerimeter();public double getArea())。

Ÿ   让Rectangle与Circle继承自Shape类。

Ÿ   编写double sumAllArea方法输出形状数组中的面积和和double sumAllPerimeter方法输出形状数组中的周长和。

Ÿ   main方法中

1)输入整型值n,然后建立n个不同的形状。如果输入rect,则再输入长和宽。如果输入cir,则再输入半径。
2) 然后输出所有的形状的周长之和,面积之和。并将所有的形状信息以样例的格式输出。
3) 最后输出每个形状的类型与父类型,使用类似shape.getClass()(获得类型),shape.getClass().getSuperclass()(获得父类型);

思考sumAllArea和sumAllPerimeter方法放在哪个类中更合适?

输入样例:

3

rect

1 1

rect

2 2

cir

1

输出样例:

18.28

8.14

[Rectangle [width=1, length=1], Rectangle [width=2, length=2], Circle [radius=1]]

class Rectangle,class Shape

class Rectangle,class Shape

class Circle,class Shape

实验代码如下:

 package mannem;
public class shape {
double PI=3.14;
double getPerimeter() {
return 0;
}
double getArea(){
return 0;
}
}
 package mannem;

 import mannem.man;
import mannem.Rectangle;
import mannem.Circle;
import java.math.*;
import java.util.Scanner; public class man { public static void main(String[] args) {
Scanner in = new Scanner(System.in);
String rect = "rect";
String cir = "cir";
System.out.print("");
int n = in.nextInt();
shape[] score = new shape[n]; for (int i = 0; i < n; i++) { String input = in.next();
if (input.equals(rect)) {// System.out.print("rect:");
double length = in.nextDouble();
double width = in.nextDouble();
score[i] = new Rectangle( width, length);
}
if (input.equals(cir)) {// System.out.print("cir:");
double radius = in.nextDouble();
score[i] = new Circle(radius);
} }
for (int i = 0; i < n; i++) {
System.out.println(score[i]);
} man c = new man();
System.out.println(c.sumAllPerimeter(score));
System.out.println(c.sumAllArea(score));
for (shape s : score) {
// System.out.println(s.getArea()+s.getPerimeter());
System.out.println(s.getClass() + " , " + s.getClass().getSuperclass());
} } public double sumAllArea(shape score[]) {
double sum = 0;
for (int i = 0; i < score.length; i++)
sum += score[i].getArea();
return sum;
} public double sumAllPerimeter(shape score[]) {
double sum = 0;
for (int i = 0; i < score.length; i++)
sum += score[i].getPerimeter();
return sum;
} }
 package mannem;

 public class Rectangle extends shape {
private int length;
private int width;
public Rectangle(int length,int width) {
this.length=length;
this.width=width;
}
public Rectangle(double width2, double length2) {
// TODO 自动生成的构造函数存根
}
public double getPerimeter(){
double Perimeter=2*(length+width);
return Perimeter;
}
public double getArea() {
double Area=length*width;
return Area;
}
public String toString() {
return getClass().getName()+"[width="+width+"]"+"[length="+length+"]";
}
}
 package mannem;

 public class Circle extends shape{
private int radius;
public Circle(int r) {
this.radius=r;
}
public Circle(double radius2) {
// TODO 自动生成的构造函数存根
}
double getPerimeter() {
double Perimeter= 2*PI*radius;
return Perimeter;
}//求周长
double getArea() {
double Area= PI*radius*radius;
return Area;
}
public String toString() {
return getClass().getName()+"[radius="+ radius +"]";
}
}

实验结果:

实验3编程练习2

编制一个程序,将身份证号.txt 中的信息读入到内存中,输入一个身份证号或姓名,查询显示查询对象的姓名、身份证号、年龄、性别和出生地。

 package id;

 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.Scanner; public class B{
private static ArrayList<A> studentlist;
public static void main(String[] args) {
studentlist = new ArrayList<>();
Scanner scanner = new Scanner(System.in);
File file = new File("E:/身份证号.txt");
try {
FileInputStream fis = new FileInputStream(file);
BufferedReader in = new BufferedReader(new InputStreamReader(fis));
String temp = null;
while ((temp = in.readLine()) != null) { Scanner linescanner = new Scanner(temp);
linescanner.useDelimiter(" ");
String name = linescanner.next();
String number = linescanner.next();
String sex = linescanner.next();
String age = linescanner.next();
String province =linescanner.nextLine();
A student = new A();
student.setName(name);
student.setnumber(number);
student.setsex(sex);
student.setage(age);
student.setprovince(province);
studentlist.add(student); }
} 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.退出");
int nextInt = scanner.nextInt();
switch (nextInt) {
case 1:
System.out.println("请输入姓名");
String studentname = scanner.next();
int nameint = findStudentByname(studentname);
if (nameint != -1) {
System.out.println("身份证号:"
+ studentlist.get(nameint).getnumber() + " 姓名:"
+ studentlist.get(nameint).getName() +" 性别:"
+studentlist.get(nameint).getsex() +" 年龄:"
+studentlist.get(nameint).getage()+" 地址:"
+studentlist.get(nameint).getprovince()
);
} else {
System.out.println("不存在该学生");
}
break;
case 2:
System.out.println("请输入身份证号");
String studentid = scanner.next();
int idint = findStudentByid(studentid);
if (idint != -1) {
System.out.println("身份证号:"
+ studentlist.get(idint ).getnumber() + " 姓名:"
+ studentlist.get(idint ).getName() +" 性别:"
+studentlist.get(idint ).getsex() +" 年龄:"
+studentlist.get(idint ).getage()+" 地址:"
+studentlist.get(idint ).getprovince()
);
} else {
System.out.println("不存在该学生");
}
break;
case 3:
isTrue = false;
System.out.println("已退出");
break;
default:
System.out.println("输入有误");
}
}
} public static int findStudentByname(String name) {
int flag = -1;
int a[];
for (int i = 0; i < studentlist.size(); i++) {
if (studentlist.get(i).getName().equals(name)) {
flag= i;
}
}
return flag; } public static int findStudentByid(String id) {
int flag = -1; for (int i = 0; i < studentlist.size(); i++) {
if (studentlist.get(i).getnumber().equals(id)) {
flag = i;
}
}
return flag; } }
 package id;

 public class A {

     private String name;
private String number ;
private String sex ;
private String age;
private String province; public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getnumber() {
return number;
}
public void setnumber(String number) {
this.number = number;
}
public String getsex() {
return sex ;
}
public void setsex(String sex ) {
this.sex =sex ;
}
public String getage() {
return age;
}
public void setage(String age ) {
this.age=age ;
}
public String getprovince() {
return province;
}
public void setprovince(String province) {
this.province=province ;
} }

实验结果如下:

实验总结:

通过这次实验我学习到了java中继承的用法和作用,理解了继承的定义, 掌握子类的定义要求,掌握多态性的概念及用法, 掌握抽象类的定义及用途,掌握抽象类的定义方法及用途, 理解了ArrayList类的定义方法及用法, 知道了枚举类定义方法及用途。这次的实验让我们把书本上的知识运用到时间中让我们知道了自己的不足。

达拉草201771010105《面向对象程序设计(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. 达拉草201771010105《面向对象程序设计(java)》第三周学习总结

    达拉草201771010105«面向对象程序设计(java)»第三周学习总结 第一部分:实验部分  1.实验目的与要求 (1)进一步掌握Eclipse集成开发环境下java程序开发基本步骤: (2)熟 ...

随机推荐

  1. Centos7.5 firewalld防火墙配置

    CentOS 7.0默认使用的是firewall作为防火墙 1.查看firewall服务状态 systemctl status firewalld 2.查看firewall的状态 firewall-c ...

  2. windows10+apache2.4+python3.6部署Django2.2.4项目

    刚从家回来,老师让写专利,就开始准备写,初稿交给老师后,把我说了一顿,我就想着回去改呀,然后...老师找到了我,说是食品院那急需一个展示数据的平台,然我尽快干出来,我也是菜鸟啊,就没单独干过呀,即使是 ...

  3. learning Perl:91行有啥用? 88 print "\n----------------------------------_matching_multiple-line_text--------------------------\n"; 91 my $lines = join '', <FILE>;

    89 open FILE, "< file_4_ex_ch7.txt"     90     or die "cannot open file: $!"; ...

  4. 吴裕雄--天生自然python学习笔记:python 用pygame模块游戏开发

    游戏开发在软件开发领域占据了非常重要的位直.游 戏开发需要用到的技术相当广泛,除了多媒体.图片.动 画的处理外,程序设计更是游戏开发的核心内容. Py game 是为了让 Python 能够进行游戏开 ...

  5. Servlet&JSP复习笔记 04

    1.状态管理 因为HTTP协议是无状态协议,但很多时候需要将客户端和服务端的多次请求当做一个来对待.将多次交互中设计的数据进行保存. 状态:数据 管理:对数据的维护 2.Cookie 客户端向服务器发 ...

  6. 多因素线性回归|adjusted R^2|膨胀系数|非线性回归|Second-order model with 1 independent variable|Interaction model with 2 independent variables|偏相关|fraction[a]|contribution

    多因素线性回归 系数由最小二乘法得到 R^2;adjusted R^2:变量变多之后,r^2自然变大,但是这不是反应客观事实,所以引入了adjusted R^2 使用散点图看独立性,也可以使用软件,c ...

  7. single-value grouping |limit grouping|cutpoint grouping|Lower class limit|Upper class limit|Class width|Class mark|rounding error or roundoff error|Histograms|Dotplots|Stem-and-Leaf

    2.3 Organizing Quantitative Data group quantitative data: To organize quantitative data, we first gr ...

  8. TreeviewEditor.rar

    本工具可以打开.保存指定格式的XML文件. 树形控件的节点可以编辑.删除.增加.使用本工具看方便地创建书或论文的目录大纲,我用这个工具已经写了好几本书了. 动态图1: 动态图2:编辑效果,支持节点拖曳 ...

  9. [LC] 156. Binary Tree Upside Down

    Given a binary tree where all the right nodes are either leaf nodes with a sibling (a left node that ...

  10. ZooKeeper基本讲解及使用

    本文摘录于:http://blog.51cto.com/tchuairen/1859494:https://blog.csdn.net/peace1213/article/details/525714 ...