Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
オブジェクトを複製するDateTime(またはその値を別のオブジェクトに割り当てる) 最良の方法は何ですか?
DateTime
import org.joda.time.DateTime; ... DateTime date = new DateTime(); DateTime cloneOfDate = ???
使用するだけです:
cloneOfDate = date;
DateTime オブジェクトは不変であるため、複製する必要はありません。