gpt4 book ai didi

java - Objective-C 中的时间段

转载 作者:太空宇宙 更新时间:2023-11-04 08:22:15 26 4
gpt4 key购买 nike

在做一个小项目时,我收到了一些 Java 代码,我应该将它们重写为 Objective-C(准确地说是针对 iPhone)。我遇到了这段代码:

public class Period {
private org.joda.time.Period jodaPeriod;
public Period(org.joda.time.Period jodaPeriod) {
Validate.isTrue(PeriodType.standard().equals(jodaPeriod.getPeriodType()),
"The jodaPeriod argument must be a standard type period");
this.jodaPeriod = jodaPeriod;
}

public Period(int months) {
this(new org.joda.time.Period(months / 12, months % 12, 0, 0, 0, 0, 0, 0));
}

public Period(int years, int months) {
this(new org.joda.time.Period(years, months, 0, 0, 0, 0, 0, 0));
}
//some other code
}

经过快速研究,我了解了 JodaTime period 的基础知识,但我仍然不知道如何在 Objective-C 中做到这一点。我读过有关 CMTime 的内容,但这并不是我真正想要的。

谢谢,任何帮助将不胜感激。 :)

最佳答案

我不完全确定你想用它做什么,但你会想看看:

  1. NSCalendar

  2. NSDateComponents

  3. NSDate

如果您提供有关您实际想要实现的目标的更多信息,我们可以解释您如何使用这些信息。

关于java - Objective-C 中的时间段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9291923/

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