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.
APEXにユリウス日機能はありますか?
たとえば、今日 [2013 年 5 月 28 日] のユリウス日は 2456442 です。
ありがとう
答えは次のとおりです。
public static Integer getJulianDate(integer I,integer J,integer K){ // I= YEAR // J= MONTH // K= DAY return ( K-32075+1461*(I+4800+(J-14)/12)/4+367*(J-2-(J-14)/12*12) /12-3*((I+4900+(J-14)/12)/100)/4 ); }