摘要:
Exception: Can not find valid pkg-config name. Specify MYSQLCLIENT_CFLAGS and MYSQLCLIENT_LDFLAGS env vars manuallyz 执行yum install mysql-community-dev 阅读全文
摘要:
package main import ( "errors" "fmt" "strconv" ) type List struct { Length int Head *Node } type Node struct { NextNode *Node Value int } func (list *List) IsEmpty() bool { return list.Length == 0 } f 阅读全文