gpt4 book ai didi

java - 为什么引用对象有 04/10/2016?

转载 作者:行者123 更新时间:2023-12-01 09:06:09 25 4
gpt4 key购买 nike

我不明白为什么要打印date2 04/10/2016 ,

1)我没有调用有RETURN的方法
2)有两种方法,参数相同但输出不同

MyDate date2 = new MyDate(4,10,2008);
System.out.println(date2);

----------------------------------------
//MyDate class
public class MyDate{

public int day;
public int month;
public int year;


public MyDate(){
}

//Constructor that takes 3 arguments
public MyDate(int m, int d, int y){
setDate(m, d, y);
}
//Methods

public String toString1(){
return day + "/" + month + "/" + year;
}

public String toString(){
return month + "/" + day + "/" + year;
}

public void setDate(int m, int d, int y){
day = d;
year = y;
month = m;
}
}

最佳答案

当您尝试将 Object 转换为 String 时,它会在内部调用 toString() ,并且在您的情况下实现打印它

关于java - 为什么引用对象有 04/10/2016?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41272225/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com