上一页 1 2 3 4 5 6 ··· 45 下一页
摘要: 编写json文件 { "service":{ "id": "hello", "name": "hello", "address": "127.0.0.1", "port": 8080, "tags": ["uth","report"], "checks":[ { "tcp": "127.0.0.1: 阅读全文
posted @ 2022-12-19 20:35 topass123 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 建立proto syntax = "proto3"; option go_package = ".;say"; package say; service SayService{ rpc SayHello(sayRequest)returns(sayResponse){} } message sayR 阅读全文
posted @ 2022-12-19 16:10 topass123 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 暂时忽略rpc的安装问题 构建rpc-server package main import ( "fmt" "net" "net/http" "net/rpc" ) type User struct { } func (u *User) GetUser(name string, out_data * 阅读全文
posted @ 2022-12-19 12:09 topass123 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 时间类型 // timeDemo 时间对象的年月日时分秒 func timeDemo() { now := time.Now() // 获取当前时间 fmt.Printf("current time:%v\n", now) year := now.Year() // 年 day := now.Day 阅读全文
posted @ 2022-12-17 23:08 topass123 阅读(227) 评论(0) 推荐(0) 编辑
摘要: strconv与之前的strings有本质的区别。他不仅仅局限于字符本身的功能与字节的转化,还提供可int,bool的多种数据类型的解析 string 与 int 类型之间的转换 Atoi():字符串转整型 Itoa():整型转字符串 Parse 系列函数 Parse 系列函数用于将字符串转换为指定 阅读全文
posted @ 2022-12-17 22:56 topass123 阅读(23) 评论(0) 推荐(0) 编辑
摘要: os package main import ( "log" "os" ) func main() { // 1.文件的基础操作,create/open/close/chmod -> go/io库 f, err := os.Create("create.txt") if err != nil { l 阅读全文
posted @ 2022-12-17 22:28 topass123 阅读(25) 评论(0) 推荐(0) 编辑
摘要: json的序列化【本质是转化为可传输的二进制】 type Monster struct { Name string //如果改成小写,序列化时跨包会丢掉此字段 Age int `json:"age"` //代表json过后的重命名 Score float64 } func testStruct() 阅读全文
posted @ 2022-12-17 21:57 topass123 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 字符串涉及的用法strings 1)统计 strings.Count 2)替换 strings.Replace() 3)组合 strings.Join() 4)清洗 strings.Trim() 5)查找子串 strings.Index();strings.Contains() 6)分割 strin 阅读全文
posted @ 2022-12-17 21:46 topass123 阅读(61) 评论(0) 推荐(0) 编辑
摘要: import random import requests from selenium import webdriver #获得浏览器驱动 import time import cv2 import numpy as np from selenium.webdriver import ActionC 阅读全文
posted @ 2022-11-13 23:27 topass123 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 推荐链接: https://blog.csdn.net/weixin_45022563/article/details/123922815 阅读全文
posted @ 2022-11-13 23:17 topass123 阅读(52) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 45 下一页