Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

What is wrong with this code?

GregorianCalendar today = new GregorianCalendar();
GregorianCalendar hundredDays = today.add(GregorianCalendar.DAY_OF_MONTH, 100);

It always returns "incompatible types"

required: GregorianCalendar
found: void
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
167 views
Welcome To Ask or Share your Answers For Others

1 Answer

Below is the signature of add

void java.util.GregorianCalendar.add(int field, int amount)

It doesn't return anything. So when you try to assign void to GregorianCalendar, you will get a compilation error


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...