123ArticleOnline Logo
Welcome to 123ArticleOnline.com!
ALL >> Computer-Programming >> View Article

Mastering Go: Guide To Type Declarations, Variables, And Constants

Profile Picture
By Author: Sanaya
Total Articles: 48
Comment this article
Facebook ShareTwitter ShareGoogle+ ShareTwitter Share

Constants in Go
In Go, constants are fixed values that are known at compile time and remain unchanged throughout the program’s execution. They are defined using the const keyword and can be of basic types like integers, floats, strings, and booleans. Constants help improve code readability and maintainability by ensuring certain values remain consistent.

Declaring Constants
Constants are declared using the const keyword, followed by the constant's name, type, and value. The type can often be omitted because Go infers it from the assigned value.

const Pi float64 = 3.14159
const Greeting = "Hello, World!"
const DaysInWeek = 7
const IsTrue = true
Grouping Constants
You can group constants using parentheses, which is useful for organizing related constants.

const (
Pi = 3.14159
Greeting = "Hello, World!"
DaysInWeek = 7
)
Untyped Constants
Go allows untyped constants, which do not have a fixed type until they are used in a context that requires a specific type. This provides flexibility.

const Pi = 3.14159 // untyped ...
... constant
var radius float64 = 10
var circumference = 2 * Pi * radius // Pi is used as a float64 here
Enumerated Constants
Enumerated constants are a way to create a sequence of related constants, often using the iota keyword, which simplifies creating incrementing values.


const (
Sunday = iota // 0
Monday // 1
Tuesday // 2
Wednesday // 3
Thursday // 4
Friday // 5
Saturday // 6
)
The iota keyword represents successive integer constants starting from 0 and resets to 0 whenever the const keyword appears.

Constants with Expressions
Constants can be defined using expressions as long as the result is a compile-time constant.

const (
SecondsInMinute = 60
MinutesInHour = 60
HoursInDay = 24
SecondsInDay = SecondsInMinute * MinutesInHour * HoursInDay // 86400
)
Limitations of Constants
Immutable: Constants cannot be changed once defined.

Compile-Time: The value of a constant must be known at compile time.

Basic Types Only: Constants can only be of basic types. More complex types like slices, maps, and structs cannot be constants.

Practical Usage of Constants
Constants are often used to define values that are used multiple times in the code, such as configuration settings, fixed dimensions, or commonly used strings.


package main

import "fmt"

const (
Pi = 3.14159
AppName = "MyApp"
MaxUsers = 100
WelcomeMsg = "Welcome to MyApp!"
)

func main() {
fmt.Println(AppName, "allows up to", MaxUsers, "users.")
fmt.Println(WelcomeMsg)
fmt.Printf("The value of Pi is approximately %.2f\n", Pi)
}

Total Views: 115Word Count: 468See All articles From Author

Add Comment

Computer Programming Articles

1. How A Hospital Management System Can Improve Healthcare In Zambia
Author: Agness Ruth

2. "elevate Your Programming Skills With Lcc Computer Education's Expert Training"
Author: Khushi Gill

3. Business Analytics Courses In Bhopal – A Smart Career Move With Raj Institute Of Coding & Robotics
Author: Rohan Rajput

4. Migrating To Aws: Your Step-by-step Guide To Cloud Transformation
Author: Tecnolynx Global Pvt. Ltd.

5. Getting The Best Seo Firm For Your Business Success
Author: webtek Digiytal

6. Advantages Of The Best Fitness App Development Company In Dubai
Author: webtek Digiytal

7. Find Top Business Analytics Courses In Bhopal – Enroll Now
Author: Rohan Rajput

8. Custom Laravel Web Development: Why It’s The Smart Choice For Your Business
Author: Adarsh

9. Best Web Development Institutes In Bhopal Offering Java Courses
Author: Rohan Rajput

10. Top Web Development Institutes In Bhopal For Java Coding Classes
Author: Rohan Rajput

11. Why Every Business Needs Online Accounting Software In Zambia 2025
Author: Doris Rose

12. Best Web Development Institutes In Bhopal For Java Coding Classes
Author: Rohan Rajput

13. Master Ai Skills With Industry-leading Certifications
Author: EDCHART

14. The Ultimate Guide To Equipment Rental Software
Author: prestartr

15. The Enduring Importance Of Websites In The Ai Era
Author: Backend Brains

Login To Account
Login Email:
Password:
Forgot Password?
New User?
Sign Up Newsletter
Email Address: