mirror of
https://github.com/golang/go
synced 2024-11-05 21:36:12 -07:00
e24977d231
The next CL will remove the -G flag, effectively hard-coding it to its current default (-G=3). Change-Id: Ib4743b529206928f9f1cca9fdb19989728327831 Reviewed-on: https://go-review.googlesource.com/c/go/+/388534 Reviewed-by: Keith Randall <khr@golang.org> Trust: Matthew Dempsky <mdempsky@google.com> Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
51 lines
916 B
Go
51 lines
916 B
Go
// run
|
|
|
|
// Copyright 2021 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import "sync"
|
|
|
|
// A Lockable is a value that may be safely simultaneously accessed
|
|
// from multiple goroutines via the Get and Set methods.
|
|
type Lockable[T any] struct {
|
|
x T
|
|
mu sync.Mutex
|
|
}
|
|
|
|
// Get returns the value stored in a Lockable.
|
|
func (l *Lockable[T]) get() T {
|
|
l.mu.Lock()
|
|
defer l.mu.Unlock()
|
|
return l.x
|
|
}
|
|
|
|
// set sets the value in a Lockable.
|
|
func (l *Lockable[T]) set(v T) {
|
|
l.mu.Lock()
|
|
defer l.mu.Unlock()
|
|
l.x = v
|
|
}
|
|
|
|
func main() {
|
|
sl := Lockable[string]{x: "a"}
|
|
if got := sl.get(); got != "a" {
|
|
panic(got)
|
|
}
|
|
sl.set("b")
|
|
if got := sl.get(); got != "b" {
|
|
panic(got)
|
|
}
|
|
|
|
il := Lockable[int]{x: 1}
|
|
if got := il.get(); got != 1 {
|
|
panic(got)
|
|
}
|
|
il.set(2)
|
|
if got := il.get(); got != 2 {
|
|
panic(got)
|
|
}
|
|
}
|