-
初试Golang开发Telegram机器人
安装依赖库 go get -u github.com/go-telegram-bot-api/telegram-bot-api/v5 创建一个机器人 package main import ( "fmt" "github.c……
Ne-21 2022-07-30
386 0 0 -
某星学不通字体加密分析及解决思路
前言 我就写着玩玩,也不是计算机相关的专业,有错误、表述不清,还请大佬指正。 分析加密字体与原字体文件 测验一中的加密字体(一) 字体的坐标 测验二中……
Ne-21 2022-05-07
590 3 3 -
Golang中的反射
前言 反射在很多语言中都有其妙用。在计算机科学领域,反射是指一类应用,它们能够自描述和自控制。 反射的简介 Golang提供了一种机制,在编译时不知道类型的……
Ne-21 2022-03-29
364 0 0 -
Golang – 反射的最佳实践
/** * @Author: Ne-21 * @Description: 反射的最佳实践 * @File: example1 * @Version: 1.0.0 * @Date: 2022/1/7 14:38 */ package main import ( ……
Ne-21 2022-01-07
291 0 0 -
Golang – 管道与协程求素数
/** * @Author: Ne-21 * @Description: 求1-8000素数 * @File: case2 * @Version: 1.0.0 * @Date: 2022/1/6 15:56 */ package main import ( &qu……
Ne-21 2022-01-06
308 0 0 -
Golang – 接口编程的最佳实践
func Sort(data Interface) type Interface interface { // Len is the number of elements in the collection. Len() int // Less reports whet……
Ne-21 2022-01-03
328 0 0 -
Golang – 字符串常用的系统函数
package main import ( "fmt" "strconv" "strings" ) func main(){ //统计字符串的长度,按字节 len(str) ……
Ne-21 2021-12-29
328 0 0 -
(最新方法)如何进入学习通上锁章节
文章出自公众号“烟雨天青色”转载请注明出处,尊重作者,谢谢。 学习过程中,我们可能会遇到章节被老师上锁的情况,这样没学习的同学可能会因此丢失视频的分……
Ne-21 2021-10-30
1.2K+ 0 0 -
Vue3 – 拉开序幕的setup
1.拉开序幕的setup 理解:Vue3.0中一个新的配置项,值为一个函数。 setup是所有Composition API(组合API)“ 表演的舞台 ”。 组件中所用到的:数据、方法等等……
Ne-21 2021-10-21
352 0 0 -
微信小程序wxml语法 – 数据绑定
初始化数据 页面.js 的 data 选项中 Page({ /** * 页面的初始数据 */ data: { msg:"初始化数据" }, }) 使用数据 模板结构中使用双大括……
Ne-21 2021-09-19
327 0 0