Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Hands-On Full Stack Development with Go

You're reading from   Hands-On Full Stack Development with Go Build full stack web applications with Go, React, Gin, and GopherJS

Arrow left icon
Product type Paperback
Published in Mar 2019
Publisher Packt
ISBN-13 9781789130751
Length 324 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Mina Andrawos Mina Andrawos
Author Profile Icon Mina Andrawos
Mina Andrawos
Arrow right icon
View More author details
Toc

Table of Contents (15) Chapters Close

Preface 1. Section 1: The Go Language FREE CHAPTER
2. Welcome to Full Stack Go 3. Building Blocks of the Go Language 4. Go Concurrency 5. Section 2: The Frontend
6. Frontend with React.js 7. Building a Frontend for GoMusic 8. Section 3: Web APIs and Middleware in Go
9. RESTful Web APIs in Go with the Gin Framework 10. Advanced Web Go Applications with Gin and React 11. Testing and Benchmarking Your Web API 12. Introduction to Isomorphic Go with GopherJS 13. Where to Go from Here? 14. Other Books You May Enjoy

Panics, recovers, and defers

In Go, there is a special built-in function called panic. When you invoke panic in your code, your program is interrupted, and a panic message is returned. If a panic gets triggered and you don't capture it in time, your program will stop execution and will exit, so be very careful when you use a panic. Here is a code example:

func panicTest(p bool) {
if p {
panic("panic requested")
}
}

In the preceding example, we wrote a function that checks a flag, p. If p is true, then we throw a panic. The argument to the panic function is the message that wants the panic to return. Here is a more complete program that you can run in Go's playground (http://play.golang.org):

package main

import "fmt"

func main() {
panicTest(true)
fmt.Println("hello world")
}

func panicTest(p bool) {
if p {
panic("panic requested...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime