- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我尝试了很多方法来构建结构图并向其附加值,但我没有找到任何方法。
map 的键是字符串。该结构由两部分组成:“x”整数和“y”一段字符串。
我在构建 map 时遇到的错误是(对于 m):
main.go:11: syntax error: unexpected comma, expecting semicolon, newline, or }
当我尝试向 map 添加新的键和值时,出现错误:
go:33: syntax error: missing operand
package main
import "fmt"
type TEST struct {
x int
y []string
}
// none of these var gives the expected result
var m = map[string]*struct{x int, y []string}{"foo": {2, {"a", "b"}}, }
var m2 = map[string]struct{x int, y []string}{"foo": {2, {"a", "b"}}, }
var n = map[string]*struct{x int
y []string
}{"foo": {2, {"a", "b"}}, }
var o = map[string]*struct{
x int
y []string
}{"foo": {2, {"a", "b"}}, }
func main() {
m["foo"].x = 4
fmt.Println(m["foo"].x)
// how can I had a new key ?
m["toto"].x = 0
m["toto"] = {0, {"c", "d"}}
// and append the string "e" to {"c", "d"} ?
m["toto"].y = append(m["toto"].y, "e")
a := new(TEST)
a.x = 0
a.y = {"c", "d"}
m["toto"] = a
fmt.Println(m)
}
最佳答案
这是一种写法:
package main
import "fmt"
type TEST struct {
x int
y []string
}
var m = map[string]*TEST { "a": {2, []string{"a", "b"}} }
func main() {
a := new(TEST)
a.x = 0
a.y = []string{"c", "d"}
m["toto"] = a
fmt.Println(m)
}
注意:两种类型并不相同,只是因为它们的结构具有相同的字段。
关于dictionary - 如何使用 GO 构建结构图并向其附加值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39292672/
我在此选择中有一堆选项,每个选项都有值,例如: context|cow context|test thing|1 thing|5 thing|27 context|beans 在循环选项时,我想构建一
我是一个 JavaScript 菜鸟。我一直在用谷歌搜索互联网,但没有答案对我有帮助。我有一个数据库 ID,必须以模式形式作为隐藏值发送。 echo "".$bl_total['id'].""; *
我正在尝试编写一种方法,根据用户输入一次更改 ArrayList 中所有对象的值。用户通过对话框输入一个值,然后将其转换为整数并分配给一个值。 该列表称为studentList,并用Student 对
所以我已经阅读了有关 ajax 的回调和异步行为的内容,但我不知道如何从 ajax 的附加值创建事件。 我有这个 html : var searchRequest = null; $(function
有两个表,report 和reportcomment。每个报告评论(通过外键)分配给一个报告,因此一个报告有零到多个报告评论。 如果我需要一个列表,它为我提供了所有报告以及每个报告的相应评论数量,我将
从下面的两个文件中,我得到了输出 (2000)1 但它应该只有 (2000) 在使用 curl 获取值后附加了额外的 1,但为什么呢? balance.php user_balance.php 最
我是一名优秀的程序员,十分优秀!