Home >php教程 >php手册 >java判断是否为下午或上午

java判断是否为下午或上午

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-01 09:46:422114browse
<code class="language-java">import org.junit.Test;
/**
 * 测试当前时间是否为下午或上午
 * @author pamgo
 *
 */
public class CalendarT {
    @Test
    public void testTodayPMorAM(){
        int i = Calendar.getInstance(Locale.US).get(Calendar.AM_PM);
        System.out.println(i == Calendar.PM ? "pm":"am");
    }
    @Test
    public void testTodayPMorAM2(){
        boolean isPM = Calendar.getInstance().get(Calendar.HOUR_OF_DAY) >= 12;
        System.out.println(isPM ? "YES":"NO");
    }
}</code>

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn