calendar week中文翻譯,calendar week是什么意思,calendar week發(fā)音、用法及例句
1、calendar week
calendar week發(fā)音
英: 美:
calendar week中文意思翻譯
常用釋義:日歷周:以星期日開(kāi)始
日歷周
calendar week雙語(yǔ)使用場(chǎng)景
1、However, Ji sui calendar week not adjusted.───然歷周洎隋,俱不得調。
2、No longer will I set goals for a 12 month calendar year; my "12 Week year" starts today and it ends on March 28th.───我再也不會(huì )為十二個(gè)月一年的日歷年設立目標,我的“十二周一年”從今天開(kāi)始并會(huì )在三月二十八號結束。
3、Your referrals will be counted for one calendar week . A "week" is defined as 12: 00am Monday through 11: 59pm Sunday, Pacific Time.───您的推介會(huì )算一個(gè)日歷周的?!耙恢堋钡亩x是上午12:00周一至周日晚上11:59,太平洋時(shí)間。
4、The part of a calendar week devoted to work, school, or business:───用于工作、上學(xué)或做業(yè)務(wù)的日歷周:
5、Early in October, the Dow industrials suffered their worst calendar-week percentage decline on record.───10月初,道瓊斯指數遭遇了創(chuàng )紀錄的單周百分比跌幅。
6、Your referrals will be counted for one calendar week . A "week" is defined as 12:00am Monday through 11:59pm Sunday, Pacific Time.───您的推介會(huì )算一個(gè)日歷周的。 “ 一周”的定義是上午12:00周一至周日晚上11:59 ,太平洋時(shí)間。
7、This calendar is based on the Gregorian calendar, but the week starts on Monday instead of Sunday.───這個(gè)日歷基于羅馬日歷,但是每周的開(kāi)始是星期一而不是星期日。
8、Gets or sets a value that specifies which rule is used to determine the first calendar week of the year.───獲取或設置一個(gè)值,該值指定使用哪一規則確定該年的第一個(gè)日歷周。
9、Value that determines the first calendar week of the year.───值,該值確定該年的第一個(gè)日歷周。
calendar week相似詞語(yǔ)短語(yǔ)
1、calendar template───日歷模板
2、customizable calendar───可自定義日歷
3、solar calendar───[天]陽(yáng)歷;n.陽(yáng)歷
4、week after week───接連好幾個(gè)星期;一周接一周地
5、week by week───周復一周;一周又一周
6、blank calendar───空白日歷
7、calendar───vt.將…列入表中;將…排入日程表;n.日歷;[天]歷法;日程表
8、calendar year───n.歷年;[天]歷年
9、week───n.周,星期
2、小程序如何獲取下個(gè)月的起始時(shí)間與結束時(shí)間
Calendar類(lèi)有一個(gè)方法add方法可以使用,例如calendar.add(Calendar.WEEK_OF_YEAR, -1);表示把時(shí)間向上推一周,calendar.add(Calendar.YEAR, -1);表示把時(shí)間向上推一年。下面是一個(gè)具體的實(shí)例:
public class DateCalcTest
{
public static void main(String[] args)
{
Calendar calendar = Calendar.getInstance();
Date date = new Date(System.currentTimeMillis());
calendar.setTime(date);
// calendar.add(Calendar.WEEK_OF_YEAR, -1);
calendar.add(Calendar.YEAR, -1);
date = calendar.getTime();
System.out.println(date);
}
}
版權聲明: 本站僅提供信息存儲空間服務(wù),旨在傳遞更多信息,不擁有所有權,不承擔相關(guān)法律責任,不代表本網(wǎng)贊同其觀(guān)點(diǎn)和對其真實(shí)性負責。如因作品內容、版權和其它問(wèn)題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實(shí),本站將立刻刪除。