fib

package
v0.0.0-...-0b8e3a9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 21, 2020 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Celsius

type Celsius float64 // 摄氏温度
const (
	AbsoluteZeroC Celsius = -273.15 // 绝对零度
	FreezingC     Celsius = 0       // 结冰点温度
	BoilingC      Celsius = 100     // 沸水温度
)

func FtoC

func FtoC(f Fahrenheit) Celsius

func (Celsius) String

func (c Celsius) String() string

下面的声明语句,Celsius类型的参数c出现在了函数名的前面, 表示声明的是Celsius类型的一个名叫String的方法,该方法返回该类型对象c带着°C温度单位的字符串: c1 := FtoC(212.0) fmt.Println(c1.String()) 相当于添加了扩展

type Fahrenheit

type Fahrenheit float64 // 华氏温度

func CToF

func CToF(c Celsius) Fahrenheit

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL