本文介绍了Go:“fmt”包缩写的含义的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Golang中的fmt首字母缩写词意味着什么? fmt是允许I / O函数(如Println)的包。



我认为f表示格式化,但找不到合适的答案。 >

以下是导入此包所需的行:

importfmt

解决方案

fmt 是格式的简写。


What does the "fmt" acronym mean in Golang? "fmt" is package to allow I/O functions like Println.

I suppose that the "f" means formatting but can't find a proper answer.

Here is the line needed to import this package:

import "fmt"

解决方案

fmt is short for format. From the docs

这篇关于Go:“fmt”包缩写的含义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 18:56