Open In App

time.Time.Day() Function in Golang With Examples

Last Updated : 19 Apr, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

In Go language, time packages supplies functionality for determining as well as viewing time. The Time.Day() function in Go language is used to check the day of the month in which the stated “t” presents itself. Moreover, this function is defined under the time package. Here, you need to import the “time” package in order to use these functions.

Syntax:

func (t Time) Day() int

Here, “t” is the stated time.

Return Value: It returns the day of the month in which the stated “t” occurs.

Example 1:




// Golang program to illustrate the usage of
// Time.Day() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Declaring t in UTC
    t := time.Date(2020, 5, 6, 11, 45, 04, 0, time.UTC)
  
    // Calling Day method
    dd := t.Day()
  
    // Prints day
    fmt.Printf("The stated day is: %v\n", dd)
}


Output:

The stated day is: 6

Example 2:




// Golang program to illustrate the usage of
// Time.Day() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Declaring t in UTC
    t := time.Date(2020, 5, 36, 11, 45, 04, 0, time.UTC)
  
    // Calling Day method
    dd := t.Day()
  
    // Prints day
    fmt.Printf("The stated day is: %v\n", dd)
}


Output:

The stated day is: 5

Here, the stated day is out of usual range but it is normalized while converted.



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads