package lianxii;
public class ReferenceType {
private int day = 12;
private int month = 6;
private int year = 1900;
public ReferenceType(int d, int m, int y) {
year = y;
month = m;
day = d;
}
public void display() {
System.out.println(year + "/" + month + "/" + day);
}
public static void main(String[] args) {
ReferenceType m;
m = new ReferenceType(22, 9, 2014);
m.display();
}
}
public class ReferenceType {
private int day = 12;
private int month = 6;
private int year = 1900;
public ReferenceType(int d, int m, int y) {
year = y;
month = m;
day = d;
}
public void display() {
System.out.println(year + "/" + month + "/" + day);
}
public static void main(String[] args) {
ReferenceType m;
m = new ReferenceType(22, 9, 2014);
m.display();
}
}
本文介绍了一个简单的Java程序,用于创建并显示一个特定日期。通过定义一个包含年、月、日属性的类,并构造方法及显示日期的方法来实现。示例中创建了2014年9月22日的日期对象并输出。

被折叠的 条评论
为什么被折叠?



