摘要: 代码如下: package mainimport { "fmt"}func main(){ fmt.Println("Hello, world!")} 保存的文件格式为“test.go”; 在当前文件夹下,输入命令行 “go run test.go”,回车,结果如下: 解析: package mai 阅读全文
posted @ 2021-09-26 23:39 艾特-天空之海 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 参考此链接:https://www.cnblogs.com/zhulipeng-1998/p/12863755.html 阅读全文
posted @ 2021-09-26 23:32 艾特-天空之海 阅读(13) 评论(0) 推荐(0) 编辑
摘要: fatal: not a git repository (or any of the parent directories): .git 我第一次上传代码到git,出现上传不了的情况,我处理的情况大致如下: 先创建一个文件夹,先在此文件夹里git init;然后在clone地址(此时没有代码);出现 阅读全文
posted @ 2021-09-25 19:19 艾特-天空之海 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 什么是Redis? Redis是一种基于键值对(key-value)的NoSQL数据;如何存放数据? Redis把所有数据存放在内存中(从内存中获取数据的速度,比从硬盘中获取数据的速度要快很多很多);Redis还可将内存的数据利用快照和日志的形式保存于硬盘中,如若电脑发生类似断电的意外,Redis的 阅读全文
posted @ 2021-09-23 22:19 艾特-天空之海 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 第0步、先安装redis; 下载链接: 链接:https://pan.baidu.com/s/11Du4_CuKHkfTWdUWAaDIRA 提取码:jr0y 下载完成后,先解压; 然后在此目录下进入命令行,输入 redis-server.exe redis.windows.conf 之后效果如下图 阅读全文
posted @ 2021-09-22 23:38 艾特-天空之海 阅读(243) 评论(1) 推荐(0) 编辑
摘要: 代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; name 阅读全文
posted @ 2021-08-29 22:35 艾特-天空之海 阅读(118) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; nam 阅读全文
posted @ 2021-08-22 14:31 艾特-天空之海 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 简单介绍: 此处介绍的并行处理,主要是处理本地存储的数据;当使用并行处理时,会把数据拆分为多个小块,然后用多个线程处理这些小块的数据,多线程处理后的数据再统一处理再返回; 以下是处理100万数组的数据量;代码如下: using System; using System.Collections.Gen 阅读全文
posted @ 2021-05-23 10:18 艾特-天空之海 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 简单介绍: C#的SemaphoreSlim类和Semaphore类功能相似,都是用于控制多线程对指定资源的访问,但SemaphoreSlim的性能要稍好一些,个人推荐使用SemaphoreSlim; SemaphoreSlim类可以用于控制有多少个线程可以进入指定的代码,它的构造函数Semapho 阅读全文
posted @ 2021-05-22 14:48 艾特-天空之海 阅读(2192) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace 阅读全文
posted @ 2021-05-08 00:32 艾特-天空之海 阅读(75) 评论(0) 推荐(0) 编辑