基于Go语言的疫情资讯援助平台的设计与实现.zip
2022-11-30 10:18:33 1.49MB go语言
基于due分布式游戏服务器框架实现的麻将游戏服务器.zip
2022-11-30 10:18:11 106KB 分布式 go语言
Go语言基于 Hertz 与 gRPC 的分布式微服务电商系统源码.zip
2022-11-29 19:19:45 370KB go语言
8cc.go C编译器 8cc.go是用Go语言编写的C编译器。 这是8cc的端口( ) 作者 DQNEO (最初来自上山瑞 ) 用法 输出汇编代码只能在Linux上运行。 如果您使用其他平台,我会建议Docker运行它。 $ docker run -it --rm -v `pwd`:/mnt dqneo/ubuntu-build-essential:go bash root@62b0d706a586:/mnt# echo 'int main(){printf("%s\n","hello world");}' |./gorun|./asrun hello world 它支持哪种语法? 如果别的 对于 二进制运算符(+-/ *&|) 逻辑运算符(&&,||) 三元运算符(?:) 功能声明 函数调用 分配给局部变量 分配给全局变量 primitiv数据类型(int,char,char *,float,double) 复合数据类型(数组,结构,联合,指针) 指针算术 指针取消引用 测试 $ docker run -it --rm -v `pwd`:/mnt dqneo
2022-11-29 14:49:40 69KB c go compiler 8cc
1
用 Go 语言实现GB28181-2016标准的网络视频平台.zip
2022-11-29 14:20:20 22KB go语言
go + tauri + vue.js 做的一款通信软件源码.zip
2022-11-29 14:20:19 2.67MB go语言
The Go Programming Language (Go语言圣经)英文版,带标签,内容清晰。本书是Go语言学习的必读书籍。 The Go programming language is an open source project to make programmers more productive. Go is expressive, concise, clean, and efficient. Its concurrency mechanisms make it easy to write programs that get the most out of multicore and networked machines, while its novel type system enables flexible and modular program construction. Go compiles quickly to machine code yet has the convenience of garbage collection and the power of run-time reflection. It's a fast, statically typed, compiled language that feels like a dynamically typed, interpreted language.
2022-11-29 11:32:35 6.56MB golang go语言 圣经 标签
1
GearGen 用go语言编写的简单齿轮轮廓生成器,并输出到SVG。 安装 使用go工具安装应用程序源。 go get github.com/stuphi/GearGen go install github.com/stuphi/GearGen ##用 GearGen -h 这将为您提供各种选择。 animation.sh 这演示了该程序的一种可能用法。脚本的示例输出如下所示。
2022-11-29 10:40:20 5.4MB Go
1
完整可以直接用,也有源代码可以用,可以一键将utf-8编码文件,转换为ANSI文件编码
2022-11-27 18:02:05 633KB go语言转码 编码转换 UTF8转ANSI
1
本文实例讲述了Go语言服务器开发实现最简单HTTP的GET与POST接口。分享给大家供大家参考。具体分析如下: Go语言提供了http包,可以很轻松的开发http接口。以下为示例代码: 代码如下:package webserver    import (      “encoding/json”      “fmt”      “net/http”      “time”  )    func WebServerBase() {      fmt.Println(“This is webserver base!”)        //第一个参数为客户端发起http请求
2022-11-25 18:23:19 45KB go语言 post post模拟请求
1