Java第二次作业总结

Posted tian119

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java第二次作业总结相关的知识,希望对你有一定的参考价值。

一、前言

  开头容我吐槽一下啊,这一次三个题目集相比于上次来说难度有点高呀,本来是上一次的每个题目集拿个满分还比较容易,而现在这三个题目集一个满分都没有,更有第六次题目集中的没及格,讲道理这内心落差有点大,尤其是看到测试点没过后测试无数个样例依旧找不出错误的血压飙升,电脑面前双手合十后祈祷无果真的头痛,先简单地分析一波这次作业的情况:能力不够牛,时间不够多,血压不够低。

OOP训练集04

涉及知识点:

类与类的关系,类的设计,集合(Hashset),迭代器(iterator),字符串分割,Collections类 ,封装性,LocalDate类,ChronoUnit类

题量:

1.菜单计价程序-3(万恶之源)

2.有重复的数据

3.去掉重复的数据

4.单词统计与排序

5.面向对象编程(封装性)

6.GPS测绘中度分秒转换

7.判断两个日期的先后,计算间隔天数、周数

一共7道题,题目量还行,中规中矩。

难度:

除了第一道的菜单,其他题目难度不高,但一道菜单题足以拉高整个题目集难度系数很多

OOP训练集05

涉及知识点:

正则表达式,字符串排序,面向对象设计,聚合

题量:

1.正则表达式训练-QQ号校验

2.字符串训练-字符排序

3.正则表达式训练-验证码校验

4.正则表达式训练-学号校验

5.日期问题面向对象设计(聚合一)

6.日期问题面向对象设计(聚合二)

一共6道题,题量不多,且后面两道的虽然代码量比较多,但也只是前面题目基础上加了一点东西。

难度:

难度不高,正则表达式理解起来也比较容易,第2题有点凑数的感觉,后面两道题有前面的基础,改起来也不难,但老是有个别测试点通过不了又找不出来就很难受。

OOP训练集06

涉及知识点:

 ChronoField类,LocalDate类,字符串分割,类的设计

题量:

 1.菜单计价程序-4

虽然只有一道题,看这一道100分的题就知道其分量了,代码量超多,光看题目都要看很久,可以说一道更比七道强。

难度:

 难度很高,题目理解难度有点高,题目给的要求也非常多,简单来说就是又难又麻烦

二、设计与分析

这次分析主要还是对日期类和菜单进行分析,其他题目很多都在菜单题中有所体现,还有正则表达式内容很少,所以其他题目就不做过多赘述了。

由于训练集04和06都是菜单题,因此我先对训练集05中的日期问题进行分析。

OOP训练集05

7-5 日期问题面向对象设计(聚合一)

先看代码和类图:

import java.util.Scanner;

public class Main 
    public static void main(String[] args) 
        Scanner input = new Scanner(System.in);
        int year = 0;
        int month = 0;
        int day = 0;

        int choice = input.nextInt();

        if (choice == 1)  // test getNextNDays method
            int m = 0;
            year = Integer.parseInt(input.next());
            month = Integer.parseInt(input.next());
            day = Integer.parseInt(input.next());

            DateUtil date = new DateUtil(year, month, day);

            if (!date.checkInputValidity()) 
                System.out.println("Wrong Format");
                System.exit(0);
            

            m = input.nextInt();

            if (m < 0) 
                System.out.println("Wrong Format");
                System.exit(0);
            

            System.out.println(date.getNextNDays(m).showDate());
        
        else if (choice == 2)  // test getPreviousNDays method
            int n = 0;
            year = Integer.parseInt(input.next());
            month = Integer.parseInt(input.next());
            day = Integer.parseInt(input.next());

            DateUtil date = new DateUtil(year, month, day);

            if (!date.checkInputValidity()) 
                System.out.println("Wrong Format");
                System.exit(0);
            

            n = input.nextInt();

            if (n < 0) 
                System.out.println("Wrong Format");
                System.exit(0);
            
            System.out.println(date.getPreviousNDays(n).showDate());
        
        else if (choice == 3)     //test getDaysofDates method
            year = Integer.parseInt(input.next());
            month = Integer.parseInt(input.next());
            day = Integer.parseInt(input.next());

            int anotherYear = Integer.parseInt(input.next());
            int anotherMonth = Integer.parseInt(input.next());
            int anotherDay = Integer.parseInt(input.next());

            DateUtil fromDate = new DateUtil(year, month, day);
            DateUtil toDate = new DateUtil(anotherYear, anotherMonth, anotherDay);

            if (fromDate.checkInputValidity() && toDate.checkInputValidity()) 
                System.out.println(fromDate.getDaysofDates(toDate));
             else 
                System.out.println("Wrong Format");
                System.exit(0);
            
        
        else
            System.out.println("Wrong Format");
            System.exit(0);
                
    


class Year
    private int value;
    
    public Year()
        value = 0;
    
    public Year(int value) 
        this.value = value;
    
    public int getValue() 
        return value;
    
    public void setValue(int value) 
        this.value = value;
    
    public boolean isLeapYear() 
        if((value%4==0&&value%100!=0)||value%400==0)
            return true;
        else
            return false;
     
    public boolean validate() 
        if(value >= 1900 && value <= 2050)
            return true;
        else
            return false;
    
    public void yearIncrement() 
        value++;
    
    public void yearReduction() 
        value--;
    

class Month
    private int value;
    private Year year;
    
    public Month() 
        value = 0;
        year = new Year();
    
    public Month(int yearvalue,int monthvalue) 
        this.value = monthvalue;
        this.year = new Year(yearvalue);
    
    public int getValue() 
        return value;
    
    public void setValue(int value) 
        this.value = value;
    
    public Year getYear() 
        return year;
    
    public void setYear(Year year) 
        this.year = year;
    
    public void resetMin() 
        value = 1;
    
    public void resetMax() 
        value = 12;
    
    public boolean validate() 
        if(value >= 1 && value <= 12)
            return true;
        else
            return false;
    
     public void monthIncrement() 
         value++;
     
     public void monthReduction() 
         value--;
     

class Day
    private int value;
    private Month month;
    private int[] mon_maxnum = new int[]0,31,28,31,30,31,30,31,31,30,31,30,31;
    
    public Day() 
        value = 0;
        month = new Month();
    
    public Day(int yearvalue, int monthvalue, int dayvalue) 
        this.value = dayvalue;
        this.month = new Month(yearvalue, monthvalue);
        if(month.getYear().isLeapYear())
            mon_maxnum[2] = 29; 
    
    public int getValue() 
        return value;
    
    public void setValue(int value) 
        this.value = value;
    
    public Month getMonth() 
        return month;
    
    public int getMon_maxnum() 
        return mon_maxnum[month.getValue()];
    
    public void setYear(Month month) 
        this.month = month;
    
    public void resetMin() 
        if(month.getYear().isLeapYear())
            mon_maxnum[2] = 29; 
        else
            mon_maxnum[2] = 28; 
        value = 1;
    
    public void resetMax() 
        if(month.getYear().isLeapYear())
            mon_maxnum[2] = 29; 
        else
            mon_maxnum[2] = 28; 
        value = mon_maxnum[month.getValue()];
    
    public boolean validate() 
        if(!month.validate())
            return false;
        else if(value >= 1 && value <= mon_maxnum[month.getValue()])
            return true;
        else
            return false;
    
    public void dayIncrement() 
        value++;
    
    public void dayReduction() 
        value--;     
    

class DateUtil
    private Day day;
    
    public DateUtil()
        day = new Day();
    
    public DateUtil(int y, int m, int d)
        day = new Day(y, m, d);
    
    public Day getDay() 
        return day;
    
    public void setDay(Day d) 
        day = d;
    
    public boolean checkInputValidity() 
        if(day.validate() && day.getMonth().validate() && day.getMonth().getYear().validate())
            return true;
        else
            return false;
    
    public boolean compareDates(DateUtil date)
        if(day.getMonth().getYear().getValue() < date.getDay().getMonth().getYear().getValue())
            return true;
        else if(day.getMonth().getYear().getValue() == date.getDay().getMonth().getYear().getValue()) 
            if(day.getMonth().getValue() < date.getDay().getMonth().getValue())
                return true;
            else if(day.getMonth().getValue() == date.getDay().getMonth().getValue())
                if(day.getValue() < date.getDay().getValue())
                    return true;
                else
                    return false;
            
            else
                return false;
        
        else
            return false;
    
    public boolean equalTwoDates(DateUtil date)
        if(day.equals(date))
            return true;
        else
            return false;
    
    public String showDate()
        return day.getMonth().getYear().getValue()+"-"+day.getMonth().getValue()+"-"+day.getValue();
    
    public DateUtil getNextNDays(int n) 
        while(n > day.getMon_maxnum() - day.getValue() )
            if(day.getMonth().getValue() == 12)
                n = n - day.getMon_maxnum() + day.getValue();
                day.resetMin();
                day.getMonth().resetMin();
                day.getMonth().getYear().yearIncrement();
            
            else
                n = n - day.getMon_maxnum() + day.getValue();
                day.resetMin();
                day.getMonth().monthIncrement();
            
            n--;
        
        for(int i = 0; i < n; i++)
            day.dayIncrement();
        DateUtil d =new DateUtil();
        d.setDay(day);
        return d;
    
    public DateUtil getPreviousNDays(int n)
        if(day.getValue() <= n)
            n = n - day.getValue();
            if(day.getMonth().getValue() == 1)
                day.getMonth().getYear().yearReduction();
                day.getMonth().resetMax();
                day.resetMax();
            
            else
                day.getMonth().monthReduction();
                day.resetMax();
            
        
        while(day.getValue() <= n)
            n = n - day.getMon_maxnum();
            if(day.getMonth().getValue() == 1)
                day.getMonth().getYear().yearReduction();
                day.getMonth().resetMax();
                day.resetMax();
            
            else
                day.getMonth().monthReduction();
                day.resetMax();
            
        
        for(int i = 0; i < n; i++)
            day.dayReduction();
        DateUtil d =new DateUtil();
        d.setDay(day);
        return d;
    
    public int getDaysofDates(DateUtil date)
        int today = date.getDay().getValue();
        int n = 0;
        while(compareDates(date))
            if(equalTwoDates(date))
                break;
            
            else
                if(day.getMonth().getYear().getValue() == date.getDay().getMonth().getYear().getValue() && day.getMonth().getValue() == date.getDay().getMonth().getValue())
                    n = n + today - day.getValue();
                    day.setValue(today);
                
                else if(day.getMonth().getValue() == 12)
                    n = n + day.getMon_maxnum() - day.getValue() + 1;
                    day.resetMin();
                    day.getMonth().resetMin();
                    day.getMonth().getYear().yearIncrement();
                
                else
                    n = n + day.getMon_maxnum() - day.getValue() + 1;
                    day.resetMin();
                    day.getMonth().monthIncrement();
                
            
        
        return n;
    

老师给的:

我自己的:

 

 

这次日期问题相比于上次,就是将日期中年月日单独拆分成三个类,日期算法方面与之前没有多大区别,需要稍微进行改进,就比如我在Day里加入一个获取月份最大的get方法,还有在每次天数加1时判断闰年来改变每月最大天数数组中2月的最大天数等。而这次也用到了类与类之间关系设计中的聚合关系,就有点像套娃一样,一环接一环。DateUtil->Day->Month->Year,由于聚合关系,Day,Month,Year三个类都绑在一起,可以很好地理解,在对日期进行操作是需要一层一层递进,调用方法时需要一级一级调用,保证封装性的同时也可以提高代码的复用性。

7-6 日期问题面向对象设计(聚合二)

先看代码和类图:

import java.util.Scanner;

public class Main 
    public static void main(String[] args) 
        Scanner input = new Scanner(System.in);
        int year = 0;
        int month = 0;
        int day = 0;

        int choice = input.nextInt();

        if (choice == 1)  // test getNextNDays method
            int m = 0;
            year = Integer.parseInt(input.next());
            month = Integer.parseInt(input.next());
            day = Integer.parseInt(input.next());

            DateUtil date = new DateUtil(year, month, day);

            if (!date.checkInputValidity()) 
                System.out.println("Wrong Format");
                System.exit(0);
            

            m = input.nextInt();

            if (m < 0) 
                System.out.println("Wrong Format");
                System.exit(0);
            
            System.out.print(date.getYear().getValue() + "-" + date.getMonth().getValue() + "-" + date.getDay().getValue() + " next " + m + " days is:");
            System.out.println(date.getNextNDays(m).showDate());
        
        else if (choice == 2)  // test getPreviousNDays method
            int n = 0;
            year = Integer.parseInt(input.next());
            month = Integer.parseInt(input.next());
            day = Integer.parseInt(input.next());

            DateUtil date = new DateUtil(year, month, day);

            if (!date.checkInputValidity()) 
                System.out.println("Wrong Format");
                System.exit(0);
            

            n = input.nextInt();

            if (n < 0) 
                System.out.println("Wrong Format");
                System.exit(0);
            
            System.out.print(date.getYear().getValue() + "-" + date.getMonth().getValue() + "-" + date.getDay().getValue() + " previous " + n + " days is:");
            System.out.println(date.getPreviousNDays(n).showDate());
        
        else if (choice == 3)     //test getDaysofDates method
            year = Integer.parseInt(input.next());
            month = Integer.parseInt(input.next());
            day = Integer.parseInt(input.next());

            int anotherYear = Integer.parseInt(input.next());
            int anotherMonth = Integer.parseInt(input.next());
            int anotherDay = Integer.parseInt(input.next());

            DateUtil fromDate = new DateUtil(year, month, day);
            DateUtil toDate = new DateUtil(anotherYear, anotherMonth, anotherDay);

            if (fromDate.checkInputValidity() && toDate.checkInputValidity()) 
                 System.out.println("The days between " + fromDate.showDate() + 
                        " and " + toDate.showDate() + " are:"
                        + fromDate.getDaysofDates(toDate));
             else 
                System.out.println("Wrong Format");
                System.exit(0);
            
        
        else
            System.out.println("Wrong Format");
            System.exit(0);
                
    


class Year
    private int value;
    
    public Year()
        value = 0;
    
    public Year(int value) 
        this.value = value;
    
    public int getValue() 
        return value;
    
    public void setValue(int value) 
        this.value = value;
    
    public boolean isLeapYear() 
        if((value%4==0&&value%100!=0)||value%400==0)
            return true;
        else
            return false;
     
    public boolean validate() 
        if(value >= 1820 && value <= 2020)
            return true;
        else
            return false;
    
    public void yearIncrement() 
        value++;
    
    public void yearReduction() 
        value--;
    

class Month
    private int value;

    public Month() 
        value = 0;
    
    public Month(int value) 
        this.value = value;
    
    public int getValue() 
        return value;
    
    public void setValue(int value) 
        this.value = value;
    
    public void resetMin() 
        value = 1;
    
    public void resetMax() 
        value = 12;
    
    public boolean validate() 
        if(value >= 1 && value <= 12)
            return true;
        else
            return false;
    
     public void monthIncrement() 
         value++;
     
     public void monthReduction() 
         value--;
     

class Day
    private int value;
    
    public Day() 
        value = 0;
    
    public Day(int value) 
        this.value = value;
    
    public int getValue() 
        return value;
    
    public void setValue(int value) 
        this.value = value;
    
    public void dayIncrement() 
        value++;
    
    public void dayReduction() 
        value--;     
    

class DateUtil
    private Year year;
    private Month month;
    private Day day;
    private int[] mon_maxnum = new int[]0,31,28,31,30,31,30,31,31,30,31,30,31;
    
    public DateUtil()
        year = new Year();
        month = new Month();
        day = new Day();      
    
    public DateUtil(int y, int m, int d)
        year = new Year(y);
        month = new Month(m);
        day = new Day(d);
        if(year.isLeapYear())
            mon_maxnum[2] = 29; 
    
    public Year getYear() 
        return year;
    
    public void setYear(Year y) 
        year = y;
    
    public Month getMonth() 
        return month;
    
    public void setMonth(Month m) 
        month = m;
    
    public Day getDay() 
        return day;
    
    public void setDay(Day d) 
        day = d;
    
    public void resetMin() 
        if(year.isLeapYear())
            mon_maxnum[2] = 29; 
        else
            mon_maxnum[2] = 28; 
        day.setValue(1);
    
    public void resetMax() 
        if(year.isLeapYear())
            mon_maxnum[2] = 29; 
        else
            mon_maxnum[2] = 28; 
        day.setValue(mon_maxnum[month.getValue()]);
    
    public boolean checkInputValidity() 
        if(month.validate() && year.validate()) 
            if(day.getValue() >= 1 && day.getValue() <= mon_maxnum[month.getValue()])
                return true;
            else
                return false;
        
        else
            return false;
    
    public boolean compareDates(DateUtil date)
        if(year.getValue() < date.getYear().getValue())
            return true;
        else if(year.getValue() == date.getYear().getValue()) 
            if(month.getValue() < date.getMonth().getValue())
                return true;
            else if(month.getValue() == date.getMonth().getValue())
                if(day.getValue() < date.getDay().getValue())
                    return true;
                else
                    return false;
            
            else
                return false;
        
        else
            return false;
    
    public boolean equalTwoDates(DateUtil date)
        if(day.equals(date))
            return true;
        else
            return false;
    
    public String showDate()
        return year.getValue()+"-"+month.getValue()+"-"+day.getValue();
    
    public DateUtil getNextNDays(int n) 
        while(n > mon_maxnum[month.getValue()] - day.getValue() )
            if(month.getValue() == 12)
                n = n - mon_maxnum[month.getValue()] + day.getValue();
                resetMin();
                month.resetMin();
                year.yearIncrement();
            
            else
                n = n - mon_maxnum[month.getValue()] + day.getValue();
                resetMin();
                month.monthIncrement();
            
            n--;
        
        for(int i = 0; i < n; i++)
            day.dayIncrement();
        DateUtil d =new DateUtil(year.getValue(),month.getValue(),day.getValue());
        return d;
    
    public DateUtil getPreviousNDays(int n)
        if(day.getValue() <= n)
            n = n - day.getValue();
            month.monthReduction();
            resetMax();
        
        while(day.getValue() <= n)
            if(month.getValue() == 1)
                n = n - mon_maxnum[month.getValue()];
                year.yearReduction();
                month.resetMax();
                resetMax();
            
            else
                n = n - mon_maxnum[month.getValue()];
                month.monthReduction();
                resetMax();
            
        
        for(int i = 0; i < n; i++)
            day.dayReduction();
        DateUtil d =new DateUtil(year.getValue(),month.getValue(),day.getValue());
        return d;
    
    public int getDaysofDates(DateUtil date)
        int today = date.getDay().getValue();
        int n = 0;
        while(compareDates(date))
            if(equalTwoDates(date))
                break;
            
            else
                if(year.getValue() == date.getYear().getValue() && month.getValue() == date.getMonth().getValue())
                    n = n + today - day.getValue();
                    day.setValue(today);
                
                else if(month.getValue() == 12)
                    n = n +  mon_maxnum[month.getValue()] - day.getValue() + 1;
                    resetMin();
                    month.resetMin();
                    year.yearIncrement();
                
                else
                    n = n + mon_maxnum[month.getValue()] - day.getValue() + 1;
                    resetMin();
                    month.monthIncrement();
                
            
        
        return n;
    

老师给的:

 我自己的:

 

这道题和上一道题类似,只是换了一种聚合方式,Day,Month,Year三个类之间没有关联,而是都与DateUtil聚合,因此在调用方法时没有像上一题的需要层层递进,更为简单直接。总体上代码复用性那么高,但是在主方法部分也不用套娃一样写一大串。

OOP训练集04

 7-1 菜单计价程序-3

先看代码和类图:

import java.time.LocalDate;
import java.time.LocalTime;
import java.time.temporal.ChronoField;
import java.util.Scanner;

public class Main 
    public static void main(String[] args) 
        @SuppressWarnings("resource")
        Scanner in = new Scanner(System.in);
        Dish[] dish = new Dish[2];
        String[] dish1 = in.nextLine().split(" ");
        dish[0] = new Dish(dish1[0],Integer.parseInt(dish1[1]));
        String[] dish2 = in.nextLine().split(" ");
        dish[1] = new Dish(dish2[0],Integer.parseInt(dish2[1]));
        Menu menu = new Menu(dish);
        String[] num = in.nextLine().split(" ");
        Record[] records = new Record[2];
        String[] record1 = in.nextLine().split(" ");
        records[0] = new Record(Integer.parseInt(record1[0]),dish[0],Integer.parseInt(record1[2]),Integer.parseInt(record1[3]));
        
        String[] record2 = in.nextLine().split(" ");
        records[1] = new Record(Integer.parseInt(record2[0]),dish[1],Integer.parseInt(record2[2]),Integer.parseInt(record2[3]));
        System.out.println(num[0]+" "+num[1]+": ");
        System.out.println(records[0].getOrderNum()+" "+records[0].getDish().getName()+" "+records[0].getPrice());
        System.out.println(records[1].getOrderNum()+" "+records[1].getDish().getName()+" "+records[1].getPrice());
        int judge = IsOpeningHours(getWeek(num[2]),getTime(num[3]));
        Order order = new Order(records,menu);
        String end = in.nextLine();
        while(!end.equals("end")) 
            String[] delete = end.split(" ");
            int a = Integer.parseInt(delete[0]);
            order.delARecordByOrderNum(a);
            end = in.nextLine();
        
        double total = 0;
        if(judge == -1)
            System.out.println(num[0]+" "+num[1]+"out of opening hours");
        else 
            total = order.getTotalPrice()*0.1*judge;
            if(total - (int)total >= 0.5) 
                total = (int)total + 1;
            else
                total = (int)total;
            System.out.println(num[0]+" "+num[1]+": "+(int)total);
        
            
    public static int getWeek(String date) 
        String[] DATE = date.split("/");
        LocalDate Date = LocalDate.of(Integer.parseInt(DATE[0]),Integer.parseInt(DATE[1]),Integer.parseInt(DATE[2]));
        return Date.get(ChronoField.DAY_OF_WEEK);
    
    public static LocalTime getTime(String time) 
        String[] TIME = time.split("/");
        LocalTime Time = LocalTime.of(Integer.parseInt(TIME[0]),Integer.parseInt(TIME[1]),Integer.parseInt(TIME[2]));
        return Time;
    
    public static int IsOpeningHours(int week,LocalTime time) 
        if(week <= 5) 
            if(time.isAfter(LocalTime.of(16,59,59))&&time.isBefore(LocalTime.of(20,30,1)))
                return 8;
            else if(time.isAfter(LocalTime.of(10,29,59))&&time.isBefore(LocalTime.of(14,30,1)))
                return 6;
            else
                return -1;
        
        else 
            if(time.isAfter(LocalTime.of(9,30,0))&&time.isBefore(LocalTime.of(21,30,0)))
                return 10;
            else
                return -1;
        
    

class Dish
    private String name;
    private int util_price;
    
    public Dish() 
        name = "";
        util_price = 0;
    
    public Dish(String name,int util_price)
        this.name = name;
        this.util_price = util_price;
    
    public String getName() 
        return name;
    
    public int getPrice(int portion)
        double price = 0;
        switch(portion)
            case 1:
                price = util_price;
                break;
            
            case 2:
                price = util_price * 1.5;
                break;
            
            case 3:
                price = util_price * 2;
                break;
            
        
        if(price - (int)price >= 0.5) 
            return (int)price + 1;
        else
            return (int)price;
    


class Menu
    private Dish[] dishs;
    
    public Menu(Dish[] dishs) 
        this.dishs = new Dish[dishs.length];
        for(int i = 0; i < dishs.length; i++) 
            this.dishs[i] = dishs[i];
        
    
    public  Dish searthDish(String dishName) 
        int num = 0;
        Dish flag = new Dish(); 
        for(int i = 0; i < dishs.length; i++) 
            if(dishs[i].getName().equals(dishName)) 
                num = i;
                flag = new Dish("1",0); 
                    
        
        if(flag.getName().equals("1"))
            return dishs[num];
        else
            return flag;
    
    public Dish addDish(String dishName,int unit_price) 
        return new Dish(dishName,unit_price);
    

 class Record
     private int orderNum;
     private Dish d;
     private int portion;
     private int num;
     
     public Record() 
         orderNum = 0;
         d = new Dish();
         portion = 0;
         num = 0;
     
     public Record(int orderNum,Dish d,int portion,int num) 
         this.orderNum = orderNum;
         this.d = d;
         this.portion = portion;
         this.num = num;
     
     public int getOrderNum()
         return orderNum;
     
     public Dish getDish() 
         return d;
     
     public int getPrice() 
         return d.getPrice(portion)*num;
     
 

class Order
    private Record[] records;
    private Menu menu;
    
    public Order(Record[] records,Menu menu) 
        this.records = new Record[records.length];
        for(int i = 0; i < records.length; i++)
            this.records[i] = records[i];
        this.menu = menu;
    
    public int getTotalPrice() 
        int TotalPrice = 0;
        for(int i = 0; i < records.length; i++) 
            TotalPrice += records[i].getPrice();
        
        return TotalPrice;
    
    public Record addARecord(int orderNum,String dishName,int portion,int num) 
        Dish d = menu.searthDish(dishName);
        Record error = new Record();
        if(d.getName().equals(""))
            return error;
        else
            return new Record(orderNum,d,portion,num);
    
    public void delARecordByOrderNum(int orderNum) 
        int flag = 0;
        for(int i = 0; i < records.length; i++) 
            if(findRecordByNum(orderNum)) 
                records[i] = new Record();
                flag = 1;
            
        
        if(flag == 0)
            System.out.println("delete error;");
    
    public boolean findRecordByNum(int orderNum) 
        for(int i = 0; i < records.length; i++) 
            if(records[i].getOrderNum() == orderNum) 
                return true;
            
        
        return false;
    

 

 类图:

由于做这个训练集时时间有点紧张,所以这道题的完成度非常低,很多要求都没有实现,基本只是把类给设计好了,点菜和统计价格,同时用到了LocalDate和LocalTime,还有ChronoField来判断营业时间。字符串分割在这题出现频率很高,基本输入的每一句都要靠分割后的字符串数组来输入数据。因此输入也是一个很棘手的难点。但是其实有很多问题还是在第二次菜单中得到解决,因此大部分分析还是在下面来分析吧。

 OOP训练集06

7-1 菜单计价程序-4

 先看代码和类图:
import java.text.SimpleDateFormat;
import java.time.LocalDate;
import java.time.LocalTime;
import java.time.temporal.ChronoField;
import java.util.Scanner;

public class Main 
    public static void main(String[] args) 
        @SuppressWarnings("resource")
        Scanner in = new Scanner(System.in);
        Dish[] dish = new Dish[10];
        String[] command = in.nextLine().split(" ");
        for(int i = 0; !command[0].equals("table"); i++) 
            if(isNumeric(command[1])) 
                if(command.length > 2) 
                    if(command.length < 4)
                        dish[i] = new Dish(command[0],Integer.parseInt(command[1]),true);
                    else 
                        System.out.println("wrong format");
                        System.exit(0);
                            
                
                else 
                    dish[i] = new Dish(command[0],Integer.parseInt(command[1]),false);
                if(!(dish[i].getUtilPrice() > 0&&dish[i].getUtilPrice() < 300)) 
                    System.out.println(dish[i].getName()+" price out of range "+dish[i].getUtilPrice());
                    dish[i] = new Dish();
                
                
            
            else 
                dish[i] = new Dish();
                System.out.println("wrong format");
            
            
            command = in.nextLine().split(" ");
        
        Menu menu = new Menu(dish);
        if(isTable(command)) 
            Table[] table = new Table[10];
            int tableNum =0;
            for(tableNum = 0; command[0].equals("table"); tableNum++) 
                table[tableNum] = new Table(Integer.parseInt(command[1]),command[2],command[3]);
                System.out.println("table "+table[tableNum].getNum()+": ");
                Record[] records = new Record[10];
                command = in.nextLine().split(" ");
                for(int j = 0; !(command[1].equals("delete")||isTable(command)); j++) 
                    if(command[0].length() > 2) 
                        if(command.length > 3)
                            records[j] = new Record(1,new Dish(),0,0);
                        else
                            System.out.println("invalid dish");
                    
                    else 
                        if(menu.searthDish(command[1]).getName().equals("notexist")) 
                            System.out.println(command[1]+" does not exist");
                            records[j] = new Record();
                        
                        else                         
                                records[j] = new Record(Integer.parseInt(command[0]),menu.searthDish(command[1]),Integer.parseInt(command[2]),Integer.parseInt(command[3]));
                                
                    
                    command = in.nextLine().split(" ");
                    if(command[0].equals("end"))
                        break;
                
                Order order = new Order(records,menu);
                table[tableNum].setOrder(order);
                order.showOrder();
                if(!command[0].equals("end")) 
                    while(command[1].equals("delete")) 
                        order.delARecordByOrderNum(Integer.parseInt(command[0]));
                        command = in.nextLine().split(" ");
                        if(command[0].equals("end"))
                            break;
                        
                    
            
                
            for(int i = 0; i < tableNum; i++) 
                table[i].showTotal();
            
        
        else
            System.out.println("wrong format");
    
    public static boolean isTable(String[] table ) 
        if(table.length < 5) 
            if(table[0].equals("table")) 
                if(isNumeric(table[1])) 
                    if(table[3].length() == 8)
                        return true;
                    else
                        return false;
                
                else
                    return false;                    
            
            else
                return false;
        
        else
            return false;
    
    public static boolean isNumeric(String str) 
        if (str == null) 
            return false;
        
        int sz = str.length();
        for (int i = 0; i < sz; i++) 
            if (Character.isDigit(str.charAt(i)) == false) 
                return false;
            
        
        return true;
    

class Dish
    private String name;
    private int util_price;
    private boolean t;
    
    public Dish() 
        name = "";
        util_price = 0;
        t = false;
    
    public Dish(String name,int util_price,boolean t)
        this.name = name;
        this.util_price = util_price;
        this.t = t;
    
    public String getName() 
        return name;
    
    public int getUtilPrice() 
        return util_price;
    
    public boolean getT() 
        return t;
    
    public int getPrice(int portion)
        double price = 0;
        switch(portion)
            case 1:
                price = util_price;
                break;
            
            case 2:
                price = util_price * 1.5;
                break;
            
            case 3:
                price = util_price * 2;
                break;
            
        
        if(price - (int)price >= 0.5) 
            return (int)price + 1;
        else
            return (int)price;
    


class Menu
    private Dish[] dishs;
    
    public Menu(Dish[] dishs) 
        this.dishs = new Dish[dishs.length];
        for(int i = 0; i < dishs.length; i++) 
            if(dishs[i] == null)
                this.dishs[i] = new Dish();
            else
                this.dishs[i] = dishs[i];
        
    
    public Dish searthDish(String dishName) 
        int num = 0;
        Dish flag = new Dish("notexist",0,false); 
        for(int i = 0; i < dishs.length; i++) 
            if(dishs[i].getName().equals(dishName)) 
                num = i;
                flag = new Dish("exist",0,false); 
                    
        
        if(flag.getName().equals("exist"))
            return dishs[num];
        else
            return flag;
    
    public Dish addDish(String dishName,int unit_price,boolean t) 
        return new Dish(dishName,unit_price,t);
    

 class Record
     private int orderNum;
     private Dish d;
     private int portion;
     private int num;
     
     public Record() 
         orderNum = 0;
         d = new Dish();
         portion = 0;
         num = 0;
     
     public Record(int orderNum,Dish d,int portion,int num) 
         this.orderNum = orderNum;
         this.d = d;
         this.portion = portion;
         this.num = num;
     
     public int getOrderNum()
         return orderNum;
     
     public Dish getDish() 
         return d;
     
     public int getPortion() 
         return portion;
     
     public int getNum() 
         return num;
     
     public int getPrice() 
         if(!d.getT()&&(portion < 0||portion > 3))
             return 0;
         else if(d.getT()&&(portion < 0||portion > 3))
             return 0;
         else 
             if(num > 15)
                 return 0;
             else
                 return d.getPrice(portion)*num;
         
     
     public void Priceshow() 
         if(portion < 10) 
             if(!d.getT()&&(portion < 0||portion > 3))
                 System.out.println(orderNum+" num out of range "+portion);
             else if(d.getT()&&(portion < 0||portion > 3))
                 System.out.println(orderNum+" portion out of range "+portion);
             else 
                 if(num > 15)
                     System.out.println(orderNum+" num out of range "+num);
                 else
                     System.out.println(orderNum+" "+d.getName()+" "+getPrice());
             
         
         else
             System.out.println("wrong format");
         
     
 

class Order
    private Record[] records;
    private Menu menu;
    
    public Order(Record[] records,Menu menu) 
        this.records = new Record[records.length];
        for(int i = 0; i < records.length; i++)
            if(records[i] == null)
                this.records[i] = new Record();
            else
                this.records[i] = records[i];
        this.menu = menu;
    
    public Record[] getRecords() 
        return records;
    
    public int getTotalPrice() 
        int TotalPrice = 0;
        for(int i = 0; i < records.length; i++) 
            TotalPrice += records[i].getPrice();
        
        return TotalPrice;
    
    public Record addARecord(int orderNum,String dishName,int portion,int num) 
        Dish d = menu.searthDish(dishName);
        Record error = new Record();
        if(d.getName().equals(""))
            return error;
        else
            return new Record(orderNum,d,portion,num);
    
    public void delARecordByOrderNum(int orderNum) 
        int flag = findRecordByNum(orderNum);
        if(flag != -1) 
            if(records[flag].getNum() == 0)
                System.out.println("deduplication "+ orderNum);
            records[flag] = new Record(orderNum,new Dish(),0,0);
        
        else
            System.out.println("delete error");
    
    public int findRecordByNum(int orderNum) 
        for(int i = 0; i < records.length; i++) 
            if(records[i].getOrderNum() == orderNum) 
                return i;
            
        
        return -1;
    
    public void showOrder() 
        for(int i = 0; i < records.length; i++) 
            if(records[i].getNum() != 0) 
                int m = i;
                for(m = i; m > 0; m--) 
                    if(records[m-1].getOrderNum() >= records[i].getOrderNum()) 
                        System.out.println("record serial number sequence error");
                        records[i] = new Record();
                

《JAVA 技术》第二次作业

一、学习要点

认真看书并查阅相关资料,掌握以下内容:

理解对象的创建与引用的关系
掌握构造方法的重载
掌握String类
掌握类的设计方法
掌握this关键字
掌握static关键字
理解引用传递并掌握基本应用
掌握单例模式
理解内部类
二、作业要求

发布一篇随笔,主要包括以下几部分的内容:

(一)学习总结

1.什么是构造方法?什么是构造方法的重载?下面的程序是否可以通过编译?为什么?

public class Test {
    public static void main(String args[]) { 
       Foo obj = new Foo();       
    }     
}
class Foo{
    int value;
    public Foo(int intValue){
        value = intValue;
    }
}

<1>构造方法是完成对对象初始化的方法,一般应为public,定义格式为:public 类名(参数表),也可以定义无参的构造方法,不定义构造方法时,系统会自动生成一个无参的构造方法(注意:已编写了构造方法时,系统就不会自动生成)
<2>构造方法的重载是表示构造方法可以有多个,但是参数表应不同,当参数表也相同时,会报错
<3>不可以,已经定义了一个含一个参数的构造方法,系统将不会再生成一个无参的构造方法,并且Foo类中也没有无参的构造方法,所以当Test类调用Foo的无参构造方法会报错

2.运行下列程序,结果是什么?分析原因,应如何修改。

public class Test {
    public static void main(String[] args) {
        MyClass[] arr=new MyClass[3];
        arr[1].value=100;
    }
}
class MyClass{
    public int value=1;
}

结果如下:

提示是说在第四行有空指针异常的问题,
原因:
对象数组内的元素没有实例化,对象数组内的每一个元素都是一个对象,都需要单独实例化
修改:

public class Test {
	   public static void main(String[] args) {
	       MyClass[] arr=new MyClass[3];
	       for(int i=0;i<arr.length;i++) {
	    	   arr[i]=new MyClass();
	       }
	       arr[1].value=100;
	       System.out.println(arr[1].value);//测试语句
	   }
}

测试结果:

3.运行下列程序,结果是什么?说明原因。

public class Test {
    public static void main(String[] args) {
        Foo obj1 = new Foo();
        Foo obj2 = new Foo();
        System.out.println(obj1 == obj2);
    }
}
class Foo{
    int value = 100;
}

结果:

原因:因为obj1和obj2中存的是引用的地址,obj1和obj2是两个不同Foo类型的对象,两个引用地址当然不一样,所以返回的是false,应该做比较的是obj1的属性value中所存的值和obj2的属性value中所存的值
修改:

public class Test {
    public static void main(String[] args) {
        Foo obj1 = new Foo();
        Foo obj2 = new Foo();
        System.out.println(obj1.value==obj2.value);
    }
}

测试结果:

4.什么是面向对象的封装性,Java中是如何实现封装性的?试举例说明。
<1>将成员变量定义好了以后,不能在类外随意改变,保护了对象本身数据,而其他对象则通过该对象的访问方法与之联系
<2>要对数据进行封装一般用private关键字来声明属性,再用属性相应的getter和setter方法获取和设置
<3>构造方法实现对象的初始化封装
举例:
例如:银行存款,其存款、余额属性应该由其对象自己来处理,所以不能用public声明,应定义为private的,这样只能在初始化和调用setter方法时才能对数据进行更改,保护了数据本身

import java.util.Scanner;
import java.util.Scanner;
class Chuzhi {
	   private int deposit;//存款
	   private int blance;//余额
	   public Chuzhi(int deposit) {
		   this.deposit=deposit;
		   this.blance=deposit;
	   }
	public void setdeposit(int despoit) {
		   this.deposit=deposit;
	   }
	   public int getdeposit() {
		   return deposit;
	   }
	   public void setblance(int draw) {
		   if(draw>blance)
			   System.out.println("false");
		   blance =blance-draw;
	   }
	   public int getblance() {
		   return blance;
	   }
}

public class Test {

	public static void main(String[] args) {
		Chuzhi a = new Chuzhi(200);//初始存款200
		 Scanner in = new Scanner(System.in);
		 int draw = in.nextInt();
		 a.setblance(draw);
		 System.out.println("余额:"+a.getblance());

	}

}

结果:

5.阅读下面程序,分析是否能编译通过?如果不能,说明原因。

class A{
    private int secret = 5;
}
public class Test{
    public static void main(String args[]){
        A a = new A();
        System.out.println(a.secret++);
    }
}

不能,因为secret属性是private的不能在类外直接进行修改
(2)

public class Test{
    int x = 50;
    static int y = 200;
    public static void method(){
        System.out.println(x+y);
    }
    public static void main(String args[]){
        Test.method();
    }
}

不能,因为static声明的方法是静态方法,其中操作的变量只能是static声明的静态变量
6.使用类的静态变量和构造方法,可以跟踪某个类创建的对象个数。声明一个图书类,数据成员为编号,书名,书价,并拥有静态数据成员册数记录图书的总数。图书编号从1000开始,每产生一个对象,则编号自动递增(利用静态变量和构造方法实现)。下面给出测试类代码和Book类的部分代码,将代码补充完整。

class Book{
    int bookId;
    String bookName;
    double price;
    // 声明静态变量
    static int num;
    //定义静态代码块对静态变量初始化
       static {
	   num=1000;
    }
    //构造方法
        public Book(String bookName,double price) {
    	this.bookName=bookName;
    	this.price=price;
    	bookId=num;
    	num++;
    }
     public String getBookName() {
        return bookName;
    }
    public void setBookName(String bookName) {
        this.bookName = bookName;
    }
    public double getPrice() {
        return price;
    }
    public void setPrice(double price) {
        this.price = price;
    }  
    //定义方法求图书总册数
    public static int totalBook() {
    	return num-1000;
    }
    //重写toString方法
    public String toString() {
    	return "编号:"+bookId+" 书名:"+bookName+" 价格"+price;
    }
}
public class Test{
    public static void main(String args[]){ 
        Book[] books = {new Book("c语言程序设计",29.3),
                        new Book("数据库原理",30),
                        new Book("Java学习笔记",68)};
        System.out.println("图书总数为:"+ Book.totalBook()); 
        for(Book book:books){
            System.out.println(book.toString());
        }
    }   
}

运行结果:

7.什么是单例设计模式?它具有什么特点?用单例设计模式设计一个太阳类Sun。
在整个程序运行期间,针对该类只生成一个实例对象
特点:整个程序运行期间只存在一个实例对象

 class Sun {
	private static Sun sun = new Sun();//定义一个私有成员对象
	private Sun() {}//构造方法私有化
	public static Sun getsun() {
		return sun;
	}
}

8.理解Java参数传递机制,阅读下面的程序,运行结果是什么?说明理由。

public class Test {
    String str = new String("你好  ");
    char[] ch = { \'w\',\'o\',\'l\',\'l\',\'d\' };
    public static void main(String args[]) {
        Test test = new Test();
        test.change(test.str, test.ch);
        System.out.print(test.str);
        System.out.print(test.ch);
    }
    public void change(String str, char ch[]) {
        str = "hello";
        ch[0] = \'W\';
    }
}

结果:你好 Wolld
理由:java中只支持传值的方式来传递参数,str初始时使用new关键字开辟了一个新的堆空间,存放了“你好”,在change方法中并不能改变str的引用地址,所以str中的内容还是“你好”,而能改变ch中的数据是因为传递过来的数值是地址的数值,所以ch[0]=‘W’这句话可以改写ch[]数组,如要正确修改str,可以改用StringBuffer
9.其他需要总结的内容。
内部类
<1>运行外部类时,内部类也生成一个.class文件
<2>可以直接在外部类访问,也可以在其他类中调用
<3>方法内部类也称局部内部类
(二)实验总结

本次实验包括实验二和实验三两次的内容:
1.用面向对象思想完成评分系统
程序设计思路:
<1>定义三个类,Competitor(选手类)、Score(评分类)、Test(测试类)
<2>Competitor类在创建时加一个comepareTo接口,成员属性有编号、选手姓名、选手最终的成绩以及他们相应的getter和setter方法、返回选手基本信息的toString方法,还有comepareTo方法;Score类定义评委人数,和分数数组用来存放每位评委打的分,方法有他们对应的setter和getter方法、录入成绩的方法、求平均、求最大值、求最小值的方法,录入成绩方法的参数是一个double类型的数据+下标。采用一层循环来找到最大值和最小值,在求平均中调用,先求出所有评委给出的分的sum,再减去max和min,除以(总评委数-2);Test类先让用户输入选手人数和评委人数,再依据此来创建对象数组,并录入数据和调用
问题:出现空指针异常问题
原因:原因是没有将对象数组实例化
解决方案:在循环中将对象数组中的对象一一实例化
2.Email验证
程序设计思路:
<1>先让用户输入email地址
<2>利用Boolean型的判断方法,来判定是否有效,有效返回true
<3>判断方法:
将String字符串利用toCharArrays()的方法拆分成字符数组,判断第一个是否为@,如果是返回false
定义两个Boolean类型的变量初始值均为false,创建一个for循环,循环体为:如果字符数组第i个元素为" . ",则将第一个变量置为true,如果为“ @ ”,则将第二个置为true,判断:如果第一个变量为true并且第二个为false,则返回false,如果第一个变量为true并且第二个变量也为true,则跳出循环
利用split方法将email地址拆分为几个String的数组,只判断最后一个是否为规定字符串即可
问题<1>:最初的想法是(temp1和temp2为int类型),有@,temp2才会++,否则会一直为0,并且当temp2不为0时,再进行对temp1的运算,最后统计if temp1=0,则@不存在,if temp2=0,则有可能‘.’不存在,或者‘.’在@之前,此想法错误
原因:若email地址为145@14.@qq.com,则程序会出错
解决方案:改为现在的方法
问题<2>:在比较用点拆分的字符数组的最后一个元素是否符合规定时,用了“”比较
原因:字符比较不能用“
”,这样比较的是引用
解决方案:改为equals方法
3.查找子串
程序设计思路:
<1>得到原始字符串,将原始字符串中的所有子串全部用空串替换
<2>计算原始字符串的长度和更改后的字符串长度以及子串长度
<3>最后返回(原始字符串的长度-更改后字符串的长度)/子串长度
问题:无
4.统计文件
程序设计思路:
<1>让用户自己输入文件字符串,按“,”拆分成字符数组
<2>java中提供了upper和lower方法来实现大小写转换,所以将字符数组中每一个元素的第一位截取出来并用Upper方法转为大写,再加上从第一位往后的所有字符,赋值给这个元素
<3>将被按“,”拆分后的文件名,再按“.”拆分,将最后一个元素存入kind数组
<4>再定义一个double数组为种类数数组,利用Arrays类的fill方法,将每一位都置为一,设置一个两层循环,外层循环设置每一个种类的个数,内存循环来一一比较,当本次用来比较的类型不为null时,则发现相同的时,它对应的个数加一,并将相同的种类类名置为null
问题:第一次运行发现只对比了第一个的种类,其他的均为null
原因:equals方法用错了
解决方案:改为equalsIgnoreCase方法
5.类的设计
程序设计思路:
<1>设置日期类、部门类、职工类、测试类
<2>日期类中定义3个int型变量year、month,day,在构造方法中直接定义赋值,并设置一个toString方法返回成日期格式
<3>职工类中定义编号、姓名、性别、工作部门4个String变量,还定义两个日期类变量,均置空,生日和工作时间,构造方法中直接赋值,并写一个toString方法返回职工基本信息
<4>部门类中定义部门编号、部门名称两个String的变量和一个职工类的变量manager
<5>测试类中定义一个职工类对象数组,并直接初始化,定义一个部门类的对象数组,经理为职工数组中的一个对象,控制好输出格式
问题:对象数组不知道如何初始化
解决方案:通过查书得知,对象数组每个对象都需要单独实例化
问题:对象数组中不知道怎么初始化日期类
解决方案:设置一个日期类匿名对象
(三)代码托管(务必链接到你的项目)

以上是关于Java第二次作业总结的主要内容,如果未能解决你的问题,请参考以下文章

关于PTA第二次大作业的总结

JAVA第二次作业

《Java技术》第二次作业

第二次JAVA作业

《Java技术》第二次作业--面向对象基础

《JAVA 技术》第二次作业