defer

command
v0.0.0-...-280f8e7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 19, 2024 License: CC0-1.0 Imports: 1 Imported by: 0

README

defer

A clausula defer define que uma função deve ser chamada no fim da execução da rotina atual. Essa clausula é muito útil para por exemplo fechar arquivos abertos durante a execução da função.

f, err := os.Open("filename.ext")
if err != nil {
    log.Fatal(err)
}
defer f.Close()

Mais um exemplo:

package main

import (
	"fmt"
)

func main() {

	defer func() {
		fmt.Printf("Fim da função main\r\n")
	}()

	for i := 0; i < 5; i++ {
		defer fmt.Printf("%d\r\n", i)
		fmt.Printf("dentro do for %d\r\n", i)
	}
}

Playground

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL