package Demo;

public class BirthDate {
    private int day;
    private int month;
    private int year;
    
    public BirthDate(int d, int m, int y) {
        day = d;
        month = m;
        year = y;
    }
}
java bean

相关文章:

  • 2022-12-23
  • 2021-04-10
  • 2022-12-23
  • 2022-12-23
  • 2021-11-24
  • 2021-06-25
  • 2022-12-23
  • 2021-11-01
猜你喜欢
  • 2021-10-23
  • 2021-09-07
  • 2022-12-23
  • 2021-08-08
  • 2021-04-18
  • 2021-06-12
相关资源
相似解决方案