cpkg

package
v1.0.1 Latest Latest
Warning

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

Go to latest
Published: Aug 11, 2020 License: MIT Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewC

func NewC() common2.C

Types

type CImpl

type CImpl struct {
	common2.C
	// contains filtered or unexported fields
}

func (*CImpl) Deadline

func (c *CImpl) Deadline() string

pointer method可以修改对象的值,而value method不会, 所以如果在一个value对象上调用pointer method,编译器会对原来的值做一份拷贝, 并在拷贝后的值上执行函数,如果函数有修改原receiver的值,则修改的行为都发生在拷贝的值上,而不会影响原值, 这个错误很隐蔽,非常不容易调试发现,因此GO决定放弃这个错误的发生的可能性, 直接不支持pointer method被value对象调用。

func (*CImpl) Value

func (c *CImpl) Value(cv int) int

Jump to

Keyboard shortcuts

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