Examples of MyDate


Examples of model.MyDate

  }

  public MyDate getInput() {
    Scanner in = new Scanner(System.in);
    MyDate myDate = new MyDate();
    try {
      myDate.setYear(in.nextInt());
      myDate.setMonth(in.nextInt());
      myDate.setDay(in.nextInt());
    } catch (Exception e) {
      System.out.println("请输入正确的数字");
      return null;
    }
    return myDate;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.