Elixir语言中 NaiveDateTime.new!
相关用法介绍如下。
用法一
new!(date, time)
(从 1.11.0 开始)
@spec new!(Date.t(), Time.t()) :: t()
从日期和时间结构构建一个简单的日期时间。
例子
iex> NaiveDateTime.new!(~D[2010-01-13], ~T[23:00:07.005])
~N[2010-01-13 23:00:07.005]
用法二
new!(year, month, day, hour, minute, second, microsecond \\ {0, 0}, calendar \\ Calendar.ISO)
(从 1.11.0 开始)
@spec new!(
Calendar.year(),
Calendar.month(),
Calendar.day(),
Calendar.hour(),
Calendar.minute(),
Calendar.second(),
Calendar.microsecond() | non_neg_integer(),
Calendar.calendar()
) :: t()
构建一个新的 ISO 朴素日期时间。
期望所有值都是整数。如果每个条目都符合其适当的范围,则返回 naive_datetime
,如果时间或日期无效则引发。
例子
iex> NaiveDateTime.new!(2000, 1, 1, 0, 0, 0)
~N[2000-01-01 00:00:00]
iex> NaiveDateTime.new!(2000, 2, 29, 0, 0, 0)
~N[2000-02-29 00:00:00]
iex> NaiveDateTime.new!(2000, 1, 1, 23, 59, 59, {0, 1})
~N[2000-01-01 23:59:59.0]
iex> NaiveDateTime.new!(2000, 1, 1, 23, 59, 59, 999_999)
~N[2000-01-01 23:59:59.999999]
iex> NaiveDateTime.new!(2000, 1, 1, 23, 59, 59, {0, 1}, Calendar.ISO)
~N[2000-01-01 23:59:59.0]
iex> NaiveDateTime.new!(2000, 1, 1, 24, 59, 59, 999_999)
** (ArgumentError) cannot build naive datetime, reason: :invalid_time
相关用法
- Elixir NaiveDateTime.new用法及代码示例
- Elixir NaiveDateTime.utc_now用法及代码示例
- Elixir NaiveDateTime.from_gregorian_seconds用法及代码示例
- Elixir NaiveDateTime.truncate用法及代码示例
- Elixir NaiveDateTime.from_erl!用法及代码示例
- Elixir NaiveDateTime.from_iso8601用法及代码示例
- Elixir NaiveDateTime.from_erl用法及代码示例
- Elixir NaiveDateTime.convert!用法及代码示例
- Elixir NaiveDateTime.to_erl用法及代码示例
- Elixir NaiveDateTime.diff用法及代码示例
- Elixir NaiveDateTime.to_iso8601用法及代码示例
- Elixir NaiveDateTime.local_now用法及代码示例
- Elixir NaiveDateTime.compare用法及代码示例
- Elixir NaiveDateTime.to_string用法及代码示例
- Elixir NaiveDateTime.convert用法及代码示例
- Elixir NaiveDateTime.to_time用法及代码示例
- Elixir NaiveDateTime.from_iso8601!用法及代码示例
- Elixir NaiveDateTime.to_date用法及代码示例
- Elixir NaiveDateTime.to_gregorian_seconds用法及代码示例
- Elixir NaiveDateTime.add用法及代码示例
- Elixir NaiveDateTime用法及代码示例
- Elixir Node.ping用法及代码示例
- Elixir Node.start用法及代码示例
- Elixir StringIO.flush用法及代码示例
- Elixir Calendar.ISO.date_to_string用法及代码示例
注:本文由纯净天空筛选整理自elixir-lang.org大神的英文原创作品 NaiveDateTime.new!(date, time)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。