简介 目录 评价 推荐
  • Ganjr 2020-11-02

    经验和建议

    • 符合系统 IO 接口

    • 勿造轮子,多用 binary 包


    0赞 · 0采集
  • Ganjr 2020-11-02

    Golang 的缓冲 IO

    • Reader.Peek

    • Reader.ReadLine

    • Writer.Flush


    0赞 · 0采集
  • Ganjr 2020-11-02

    Golang 的基本 IO 接口

    • fmt.Printf

    • fmt.Println

    • fmt.sprintf


    0赞 · 0采集
  • Ganjr 2020-11-02

    I/O

    • Golang 的基本 IO 接口

    • Golang 的缓冲 IO

    实战

    • 计算文件行数

    • 读取二进制图片的文件头


    0赞 · 0采集
  • xncj01 2019-04-07
    go也有类似tostring的方法
    截图
    0赞 · 0采集
  • qq_完美世界_5 2018-12-27

    三种io读取

    截图
    0赞 · 0采集
  • 霜花似雪 2018-10-04
    package main
    
    import (
       "encoding/binary"
       "os"
       "fmt"
    )
    
    //go语言读取bmp文件
    
    //bmp文件信息
    type BitmapInfoHeader struct {
       Size uint32  //文件大小
       Width int32 //文件宽度
       Height int32 //文件高度
       Places uint16  //文件面数
       BitCount uint16 //每一个像素所占字节数
       Compression uint32 //压缩方式
       SizeImage uint32  //图片数据大小
       XperlsPerMeter int32 //水平分辨率
       YperlsPerMeter int32  //垂直分辨率
       ClusUsed uint32 //颜色数
       ClrImportant uint32
    }
    
    func main(){
       //实例化
       infoHeader := new(BitmapInfoHeader)
       //读取bmp文件
       file,_ := os.Open("timg.bmp")
       defer file.Close()
    
       binary.Read(file,binary.LittleEndian, infoHeader)
    
       fmt.Println(infoHeader)
    }


    0赞 · 1采集
  • 霜花似雪 2018-10-03

    str:=fmt.Sprintf("float %f",3.14159)

    fmt.Print(str)

    0赞 · 0采集
  • 霜花似雪 2018-10-03

    fmt.Printf()   格式化输出函数

    fmt.Println()  正常输出函数

    %d   整型

    %s  字符串

    %v 自动格式化参数

    截图
    0赞 · 0采集
  • 霜花似雪 2018-10-03

    Linux/Max下安装go运行环境

    截图
    0赞 · 0采集
  • 霜花似雪 2018-03-18
    IO操作
    截图
    0赞 · 0采集
  • 慕粉18612055123 2018-03-02
    待学习
    0赞 · 0采集
  • sepiggy 2017-12-21
    课程内容
    截图
    0赞 · 0采集
  • 慕丝7689371 2017-05-11
    bufio.NewReader(string) bufio.NewWriter(os.Stdout)
    0赞 · 0采集
  • greenflute 2016-11-16
    defer f.close()
    截图
    0赞 · 0采集
  • greenflute 2016-11-16
    build, install, clean go: interpreter, compiler, linker, assembler, package manager, build tool.
    截图
    0赞 · 0采集
  • ly19947 2016-02-16
    0赞 · 0采集
  • steven泽帆 2016-01-02
    F2跳转声明
    0赞 · 0采集
数据加载中...
开始学习 免费