Cette page n'est pas encore disponible en français, sa traduction est en cours. Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.
Metadata
ID:go-best-practices/avoid-nil-check-loop
Language: Go
Severity: Info
Category: Best Practices
Description
In Go, if a slice is nil, it is considered empty (with a length of 0). When a for range loop is used on an empty slice, it simply executes zero times. Therefore, it is not necessary to check if the slice s is nil before using it in a for range loop.
Consider the following code snippets:Consider the following code snippets:
funcmain(){ifs!=nil{for_,x:=ranges{}}}
In the provided code, the if condition s != nil is checking if s is nil before executing the for range loop. However, this check is not necessary because even if s is nil, the loop will not execute. It is an unnecessary extra check that can be removed to make the code simpler and more readable.
Removing the if condition and directly using the for range loop will not impact the behavior of the code because the loop will simply not execute when s is nil.
Non-Compliant Code Examples
funcmain(){ifs!=nil{for_,x:=ranges{}}}
Compliant Code Examples
funcmain(){for_,x:=ranges{}}
Seamless integrations. Try Datadog Code Analysis
Datadog Code Analysis
Try this rule and analyze your code with Datadog Code Analysis
How to use this rule
1
2
rulesets:- go-best-practices # Rules to enforce Go best practices.
Create a static-analysis.datadog.yml with the content above at the root of your repository
Use our free IDE Plugins or add Code Analysis scans to your CI pipelines