参考:Golang中如何实现GET请求
1. 普通示例:
package main
import (
"fmt"
"log"
"net/http"
)
type dolors float32
func ...
Liemer_Lius
2年前 (2023-03-14) 334℃
1喜欢
函数
函数定义了名称name,传入参数(parameter-list),通过函数体(body)的处理,返回结果(result-list),传入参数和返回结果都可以多个
func name(parameter-list) (result-li...
Liemer_Lius
2年前 (2023-03-08) 342℃
1喜欢
接口类型是对其它类型的概括和抽象,golang的接口是隐式实现的,接口不会暴露其所含数据的布局、内部结构和基本操作,只提供一些方法。
定义:
package io
type Writer interface {
Write...
Liemer_Lius
2年前 (2023-03-08) 271℃
1喜欢
参考:https://blog.csdn.net/inthat/article/details/123570590
package main
import "github.com/fatih/color"
func main()...
Liemer_Lius
2年前 (2023-03-07) 269℃
0喜欢
示例
// Copyright © 2016 Alan A. A. Donovan & Brian W. Kernighan.
// License: https://creativecommons.org/licens...
Liemer_Lius
2年前 (2023-03-07) 285℃
0喜欢
1. 值类型
1.int:
golang中int即整形,是指整数,其中包括正数和负数,是没有小数部分或小数点的数字,整型可以是十进制、八进制或十六进制,但默认为十进制,其取值范围是负2147483648到2147483647之间...
Liemer_Lius
2年前 (2023-03-07) 299℃
1喜欢
参考:https://www.cnblogs.com/mayanan/p/15414957.html
package main
import (
"fmt"
"os"
)
func main() ...
Liemer_Lius
2年前 (2023-03-01) 288℃
1喜欢
package main
import (
"fmt"
"math"
)
type Point struct{ X, Y float64 }
type Path []Point
func (p Point)...
Liemer_Lius
2年前 (2023-02-28) 261℃
0喜欢
1、位运算符
参考:https://baike.baidu.com/item/%E4%BD%8D%E8%BF%90%E7%AE%97%E7%AC%A6/2786163?fr=aladdin
二进制转换:
2: 0010
7: 011...
Liemer_Lius
2年前 (2023-02-08) 340℃
2喜欢
使用国内镜像,加速下载
安装 autoconf(无configure脚本时):
# apk add --no-cache -U autoconf
安装 C 编译器:
# apk add --no-cache -U gcc
# ap...
Liemer_Lius
2年前 (2023-01-12) 661℃
1喜欢