摘要: MySQL基础 1.初识MySQL mysql -uroot -p123456 -- 连接数据库 update mysql.user set authentication_string=password('123456') where user='root' and host='localhost' 阅读全文
posted @ 2021-05-12 22:12 无_忧 阅读(59) 评论(0) 推荐(0) 编辑
摘要: Go语言源码分析之unsafe 1.什么是unsafe unsafe 库让 golang 可以像C语言一样操作计算机内存,但这并不是golang推荐使用的,能不用尽量不用,就像它的名字所表达的一样,它绕过了golang的内存安全原则,是不安全的,容易使你的程序出现莫名其妙的问题,不利于程序的扩展与维 阅读全文
posted @ 2021-05-12 16:00 无_忧 阅读(540) 评论(0) 推荐(1) 编辑