上一页 1 ··· 4 5 6 7 8
摘要: 1 package main 2 3 import ( 4 "fmt" 5 "net" 6 "os" 7 ) 8 9 func main() { 10 if len(os.Args) != 2 { 11 fmt.Fprintf(os.Stderr, "Usage: %s ip-addr\n", os.Args[0]) 12 ... 阅读全文
posted @ 2019-10-27 22:29 尘归风 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 0.vector源代码 1.定义和初始化vector对象 vector<T> v1; //v1是一个空vector,执行默认初始化 vector<T> v2(v1) ; //v2中包含v1所有元素的副本 vector<T> v2 = v1; //跟上面等价 vector<T> v3(n, val) 阅读全文
posted @ 2019-10-27 01:23 尘归风 阅读(402) 评论(0) 推荐(0) 编辑
摘要: 0.新建工作目录 1.初始化 设置用户名和邮箱: git config --global user.name "在这里添加Your name" git config --global user.email "在这里添加Your email 查看设置: git config --list 2.创建gi 阅读全文
posted @ 2019-10-26 12:11 尘归风 阅读(103) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8