草庐IT

insert_or_assign

全部标签

go - bufio.扫描仪 : how to know if we are processing a new line or a truncated string?

我基本上需要处理从流中读取的有限缓冲区中的每个字符串行。使用bufio.Scanner,我可以逐行扫描扫描仪,但不得不使用似乎过于复杂的解决方案来检测“截断”。有更好的方法吗?非常感谢。我对任何lib或任何东西都不紧张。func(p*Parser)Read(data[]byte,tmpline*string,nint,bufSizeint){varlinestringstrdata:=string(data)scanner:=bufio.NewScanner(strings.NewReader(strdata))line=""forscanner.Scan(){ifline!=""{i

regex - Golang regex lookarround 不支持错误解析 regexp : invalid or unsupported Perl syntax: `(?!`

这个问题在这里已经有了答案:Howtoconvertregexpfromlookahead(1个回答)Usingpositive-lookahead(?=regex)withre2(2个答案)HowtosimulatenegativelookbehindinGo(2个答案)Negativelook-aheadinGoregularexpressions(3个答案)Goregex,NegativeLookAheadalternative(1个回答)关闭3年前。我有一个正则表达式来检测CSS中的绝对路径,它可以使用javascript,但在GOLANG中不行:这是我的正则表达式:url\(

regex - Go : strings or regexp 中短字符串前缀匹配的更好方法

我知道我得到的字符串会很短(我无法决定是使用strings.Contains,例如strings.Contains("123-ab-foo","123-ab"),还是正则表达式。我显然想要最快的方法。用例示例:ifstrings.Contains(current_string,MY_CONST){//dosmth} 最佳答案 如果您确定要查找的字符串(MY_CONST)将位于current_string的开头,那么最有效的方法将是HasPrefixfuncHasPrefix(s,prefixstring)boolHasPrefixt

gcc - 尝试使用 sqlite3 驱动程序运行 sql 应用程序时出现 "No such file or directory"错误

packagemainimport("fmt"_"github.com/mattn/go-sqlite3")funcmain(){DB,err:=sql.Open("sqlite3","/Users/MyUser/Documents/GOProj/test.db")iferr!=nil{fmt.Printf("Error:%s\n",err)}deferDB.Close()}每次我运行这段代码(使用SublimeText3,MacOSX10.9)我得到这个:execgcc:Nosuchfileordirectory/usr/local/go/pkg/tool/darwin_amd64/

pointers - 调用结构函数给出 "cannot refer to unexported field or method"

我有这样的结构:typeMyStructstruct{Idstring}和函数:func(m*MyStruct)id(){//doingsomethingwithidhere}我还有一个这样的结构:typeMyStruct2struct{m*MyStruct}现在我有一个函数:funcfoo(str*MyStruct2){str.m.id()}但是我在编译时遇到错误:str.m.idundefined(cannotrefertounexportedfieldormethodmypackage.(*MyStruct)."".id如何正确调用这个函数? 最佳答案

go - panic : runtime error: invalid memory address or nil pointer dereference when running Blockchainr

我运行blockchain并获得以下终端输出:17:39:572015-06-16[INF]loadingdbleveldbpanic:runtimeerror:invalidmemoryaddressornilpointerdereferencepanic:runtimeerror:invalidmemoryaddressornilpointerdereference[signal0xbcode=0x1addr=0x0pc=0x402cb63]goroutine1[running]:main.search(0x4911ef8,0xc20806e2d0,0x0,0x0,0x4911ef

macos - Go: "stat hello.go: no such file or directory"

刚刚在MacOSX上安装了Go,Yosemite版本10.10.3,如GettingStarted中所述官网页面:MacOSXpackageinstallerDownloadthepackagefile,openit,andfollowthepromptstoinstalltheGotools.ThepackageinstallstheGodistributionto/usr/local/go.Thepackageshouldputthe/usr/local/go/bindirectoryinyourPATHenvironmentvariable.Youmayneedtorestart

google-app-engine - 将字符串数据转换为在 Go AppEngine 上读取的结构 : Inserted on Java AppEngine (Objectify),

简介你好,我正在GoAppEngine上做一个模块,我在读取一些模型时遇到问题,这些模型内部有嵌套模型。模型是Party,我要的是Permissions。但是,当我从数据存储中获取Party时,权限结构字段的类型为字符串。//AndwhenIdofmt.Println(party.Permissions)showthis:%!(EXTRAstring=jjrz�5878654076715008*��jjrzshowOnMessages*zcanInviteAssistants*zcanInviteOrganizers*z canEditEvent*zroleName*

templates - 转到模板 : two or more slices ranges

下一个代码非常适合在HomeTemplate中输出一个slice。主.gotypeItemstruct{IdintNamestringTypestring}vartmpl=template.Must(template.ParseGlob("tmpl/*"))funcIndex(whttp.ResponseWriter,r*http.Request){db:=database.DbConn()selDB,err:=product.ByID()iferr!=nil{panic(err.Error())}i:=Item{}resItems:=[]Item{}forselDB.Next(){v

去加载页面问题 : invalid memory address or nil pointer dereference

我正在按照golang.org教程构建wiki页面(https://golang.org/doc/articles/wiki/#tmp_4)并且一切运行正常,直到我在“使用net/http为wiki页面提供服务”步骤中收到上述错误消息。我在src/github.com/user/gowiki/test.txt中有一个text.txt文件,但loadPage(title)似乎没有访问test.txt文件。任何帮助是极大的赞赏。谢谢!packagemainimport("fmt""io/ioutil""net/http")typePagestruct{TitlestringBody[]by