アフィリエイト広告を利用しています

広告

posted by fanblog

2018年06月08日

日付 月初・月末

日付の計算や比較は

開発する際に避けれないものか

と考えております。

今回、日付の月初を求めるため

色々なサンプルを提供させていただきます。

最後まで付き合ってください。

意見も待っております。

月初

現在日付の月初

現在の日付:2018年07月21日とする

・E.X. Code

// 実コード
Date currentDate = Date.Today();
Date curFirstDay = currentDate.toStartOfMonth();

// デバッグ確認
System.debug('===========================');
System.debug('■■■ currentDate-->' + currentDate);
System.debug('■■■ curFirstDay-->' + curFirstDay);
System.debug('===========================');

・出力結果

f:id:jude2016:20180721150020p:plain

先月の月初

・E.X.コード

// 実コード
Date currentDate = Date.Today();
Date lastMon = currentDate.addMonths(-1);
Date lastMonFirstDay = lastMon.toStartOfMonth();

// デバッグ確認
System.debug('===========================');
System.debug('■■■ currentDate-->' + currentDate);
System.debug('■■■ lastMonFirstDay-->' + lastMonFirstDay);
System.debug('===========================');

・出力結果

f:id:jude2016:20180721150342p:plain

翌月の月初

・E.X.コード

// 実コード
Date currentDate = Date.Today();
Date nextMon = currentDate.addMonths(1);
Date nextMonFirstDay = nextMon.toStartOfMonth();

// デバッグ確認
System.debug('===========================');
System.debug('■■■ currentDate-->' + currentDate);
System.debug('■■■ nextMonFirstDay-->' + nextMonFirstDay);
System.debug('===========================');

・出力結果
f:id:jude2016:20180721150625p:plain

月末

現在日付の月末

現在の日付:2018年07月21日とする

月の最終日を確認する最も簡単な方法は、

翌月の最初の日を調べ、

そこから 1 日差し引くことです。

・E.X.コード

// 実コード
Date currentDate = Date.Today();
Date nextMon = currentDate.addMonths(1);
Date nextMonFirstDay = nextMon.toStartOfMonth();
Date currentLastDay = nextMonFirstDay.addDays(-1);
// デバッグ確認
System.debug('===========================');
System.debug('■■■ currentDate-->' + currentDate);
System.debug('■■■ currentLastDay-->' + currentLastDay);
System.debug('===========================');

・出力結果
f:id:jude2016:20180721151423p:plain

先月の月末

・E.X.コード

// 実コード
Date currentDate = Date.Today();
Date currenMonFirstDay = currentDate.toStartOfMonth();
Date currentLastMonLastDay = currenMonFirstDay.addDays(-1);
// デバッグ確認
System.debug('===========================');
System.debug('■■■ currentDate-->' + currentDate);
System.debug('■■■ currentLastMonLastDay-->' + currentLastMonLastDay);
System.debug('===========================');

・出力結果
f:id:jude2016:20180721151640p:plain

翌月の月末

・E.X.コード

// 実コード
Date currentDate = Date.Today();
Date next2Mon = currentDate.addMonths(2);
Date next2MonFirstDay = next2Mon.toStartOfMonth();
Date nextMonLastDay = next2MonFirstDay.addDays(-1);
// デバッグ確認
System.debug('===========================');
System.debug('■■■ currentDate-->' + currentDate);
System.debug('■■■ nextMonLastDay-->' + nextMonLastDay);
System.debug('===========================');

・出力結果
f:id:jude2016:20180721151840p:plain

いかがでしょうか
大したことではないが、以上です。

posted by Jude at 00:00 | Comment(0) | 未分類
この記事へのコメント
コメントを書く

お名前:

メールアドレス:


ホームページアドレス:

コメント:

いつもお世話になります。ブログ引越しになったので最新のSFDC情報はこちらへ SFU_CRT_BDG_Pltfrm_App_Blder_RGB.jpg SFU_CRT_BDG_Admin_RGB.jpg
プロフィール
Judeさんの画像
Jude
こんにちは、自由が欲しいJudeっす。最近ネットビジネスを始まった。結婚はしていないが、会社の残業が大嫌い、何しても周りの人に迷惑をかけないように、社会に負の影響を与えないように常に意識してる。残業のない国になるため、できるところでコツコツ貢献しておる。、国民のみんなきっともっと幸せと信じている。
プロフィール
<< 2019年01月 >>
    1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31    
検索
月別アーカイブ
日別アーカイブ
最新コメント
ファン
×

この広告は30日以上新しい記事の更新がないブログに表示されております。