Python之Web开发初学者教程----卸载ubuntu系统
Windows 10自带了Subsytem for Linux (WSL)功能,可以让用户在Windows命令行环境下运行Linux命令。用户可以在Windows应用商店中下载和安装Ubuntu子系统,有时在使用过程中需要完全删除Ubuntu子系统以释放硬…
类型断言的定义
我们直接通过一个案例来描述类型断言比较直观
package main
import("fmt"
)
type Point struct {X intY int
}
func main() {var point Point Point{1, 2}var a interface{}a pointvar b Point//b a // 这种写法是有问题的,不能直接将…
Good morning, colleagues!
Today, I’d like to share an update about my recent work activities which encompasses of two areas: an overview of my work activities from yesterday and an agenda for today.
Yesterday’s primary task was to fixing bugs in the ga…