gpt4 book ai didi

java - 为什么我不能使用 GregorianCalendar 作为对象类型作为构造函数参数?

转载 作者:行者123 更新时间:2023-11-30 01:59:50 24 4
gpt4 key购买 nike

为什么我不能使用 GregorianCalendar 作为对象类型作为构造函数参数?

public class P(GregorianCalendar date){

为什么我不能这样做?

它给我的错误是“ token “class”上的语法错误,预期的字符”。

最佳答案

正如 Jon Skeet 在评论中提到的那样。以下是如何使用具有一个参数的构造函数创建一个类

import java.time.LocalDate;

public class P {
private LocalDate date;
public P(LocalDate date){
this.date = date;
}
}

关于java - 为什么我不能使用 GregorianCalendar 作为对象类型作为构造函数参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53250656/

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