mirror of
https://github.com/tursom/GoCollections.git
synced 2024-12-28 09:30:20 +08:00
37 lines
856 B
Go
37 lines
856 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/tursom/GoCollections/collections"
|
|
"github.com/tursom/GoCollections/exceptions"
|
|
)
|
|
|
|
func main() {
|
|
_, err := exceptions.Try(func() (interface{}, exceptions.Exception) {
|
|
panic("test")
|
|
}, func(r interface{}) (interface{}, exceptions.Exception) {
|
|
fmt.Println("recover from panic", r)
|
|
return nil, exceptions.NewIndexOutOfBound(fmt.Sprint(r), true)
|
|
})
|
|
exceptions.Print(err)
|
|
|
|
list := collections.NewConcurrentLinkedQueue()
|
|
fmt.Println(list)
|
|
for i := 0; i < 20; i++ {
|
|
list.Push(i)
|
|
fmt.Println(list)
|
|
}
|
|
|
|
_ = collections.LoopMutable(list, func(element interface{}, iterator collections.MutableIterator) (err exceptions.Exception) {
|
|
if element.(int)&1 != 0 {
|
|
err = iterator.Remove()
|
|
fmt.Println(list)
|
|
}
|
|
return
|
|
})
|
|
//for i := 0; i < 10; i++ {
|
|
// list.Remove(i * 2)
|
|
// fmt.Println(list)
|
|
//}
|
|
}
|