摘要:
operator 安装 go get github.com/operator-framework/operator-sdk export GOPROXY="https://goproxy.io" cd $GOPATH/src/github.com/operator-framework/operato 阅读全文
摘要:
1. 静态调用非静态 $ cat Helloworld.java public class Helloworld { public void Puppy(String name) { System.out.println("dog name is : " + name); } public static void main(String[] args... 阅读全文
摘要:
1. 点和冒号的区别是, 一个是方法调用, 一个面向对象,里面有个self , 修改了原function, 不会影响到复制对象。 local _M = {} function _M.one(a,b) return a + b end _M.one(1,2) # 结果是3 local w = _M ; 阅读全文