上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: 【第6章-方法】type Point struct{X,Y float64} // 普通函数func Distance(p,q Point) float64{ return math.Hypot(q.X - p,X, q.Y-p.Y)} // Point 类型方法func (p Point) Dis 阅读全文
posted @ 2020-11-10 12:13 雪域蓝心 阅读(161) 评论(0) 推荐(0) 编辑
摘要: GO ?= goGOFMT ?= gofmt "-s"PACKAGES ?= $(shell $(GO) list ./...)VETPACKAGES ?= $(shell $(GO) list ./... | grep -v /examples/)GOFILES := $(shell find . 阅读全文
posted @ 2020-11-03 18:46 雪域蓝心 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 客户端: 客户端配置文件 client.ini [IP_FAMILY] ;0-ipv4 1-机器存在ipv6协议,则使用ipv6,否则使用ipv4 2-ipv6 FAMILY=1 [MODE] ;0-普通连接 1-使用getaddrinfo函数取得地址以创建连接 METHOD=1 [IPV4] IP 阅读全文
posted @ 2020-10-11 18:54 雪域蓝心 阅读(207) 评论(0) 推荐(0) 编辑
摘要: go 关键字:breakdefaultfuncinterfaceselectcasedefergomapstructchanelsegotopackageswitchconstfallthroughifrangetypecontinueforimportreturnvar go 的值:truefal 阅读全文
posted @ 2020-09-24 11:28 雪域蓝心 阅读(154) 评论(0) 推荐(0) 编辑
摘要: linux、windows 下, linux 下的close() / windows 下的 closesocket() 操作只是使相应socket描述字的引用计数-1,只有当引用计数为0的时候,才会触发TCP客户端向服务器发送终止连接请求。 转: https://zhuanlan.zhihu.com 阅读全文
posted @ 2020-09-16 16:53 雪域蓝心 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 未看懂,先记下。 参照视频: https://www.bilibili.com/video/BV1fK4y1b7Xt?from=search&seid=1825034895569999345 https://www.bilibili.com/video/BV1qt411Z7nE?p=2 问题: 有  阅读全文
posted @ 2020-09-06 17:39 雪域蓝心 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 力扣中文网 牛客网 https://www.nowcoder.com/ta/review-c/review?page=1 https://www.nowcoder.com/ta/review-c/review?page=82 【上机练习】 https://www.nowcoder.com/exam/ 阅读全文
posted @ 2020-04-06 18:44 雪域蓝心 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 以下代码: // 推送条件变量 std::mutex g_cvMutexPush; std::condition_variable g_cvPush; std::unique_lock <std::mutex> g_lkPush(g_cvMutexPush); // 唤醒推送 std::mutex 阅读全文
posted @ 2020-03-04 19:09 雪域蓝心 阅读(934) 评论(0) 推荐(0) 编辑
摘要: *** redis 自启动所需要的文件: init.d目录:https://www.cnblogs.com/20170722-kong/articles/12296835.html redis-server 脚本内容如下: #! /bin/sh ### BEGIN INIT INFO # Provi 阅读全文
posted @ 2020-02-11 21:15 雪域蓝心 阅读(215) 评论(0) 推荐(0) 编辑
摘要: *** 日期为字符串: select curdate()+0; **** 清空表 TRUNCATE TABLE 表名; 阅读全文
posted @ 2020-01-14 17:04 雪域蓝心 阅读(125) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页