福大大架构师每日一题
福大大架构师每日一题
全部文章
福大大架构师每日一题
归档
标签
去牛客网
登录
/
注册
福大大架构师每日一题的博客
最新面试题,针对高级开发人员和架构师。内容是后端、大数据和人工智能。
全部文章
/ 福大大架构师每日一题
(共67篇)
2022-11-08:以下go语言代码输出什么?A:2;B:编译错误;C:运行 panic。 package
2022-11-08:以下go语言代码输出什么?A:2;B:编译错误;C:运行 panic。 package main import "fmt" func main() { a := []int{5} for range a { a = append(a, 1) } fmt.Prin...
福大大
golang
选择题
2022-11-08
1
266
2022-11-02:以下go语言代码输出什么?A:编译错误;B:apple;C:ant;D:panic
2022-11-02:以下go语言代码输出什么?A:编译错误;B:apple;C:ant;D:panic。 package main import "fmt" func main() { pairs := [][2]string{ {"a", "apple"}, ...
福大大
golang
选择题
2022-11-02
1
495
2022-10-31:以下go语言代码输出什么?A:map[];B:nil;C:Panic;D:编译错误
2022-10-31:以下go语言代码输出什么?A:map[];B:nil;C:Panic;D:编译错误。 package main import "fmt" func main() { var m map[string]int delete(m, "oh noes!") ...
福大大
golang
选择题
2022-10-31
1
453
2022-10-28:以下go语言代码输出什么?A:false false;B:true false
2022-10-28:以下go语言代码输出什么?A:false false;B:true false;C:true true;D:false true。 package main import "fmt" func main() { s := []string{"A", "B", "C"...
福大大
golang
选择题
2022-10-28
1
323
2022-10-26:以下go语言代码输出什么?A:1 3 2;B:1 2 3;C:3 1 2;D:3 2 1
2022-10-26:以下go语言代码输出什么?A:1 3 2;B:1 2 3;C:3 1 2;D:3 2 1。 package main import "fmt" type temp struct{} func (t *temp) Add(elem int) *temp { fmt....
福大大
golang
选择题
2022-10-26
1
310
2022-10-24:以下go语言代码输出什么?A:3 3;B:3 4;C:0 0;D:0 1。 package
2022-10-24:以下go语言代码输出什么?A:3 3;B:3 4;C:0 0;D:0 1。 package main func main() { m := make(map[int]int, 3) x := len(m) m[1] = m[1] y := len(m) p...
福大大
golang
选择题
2022-10-24
1
252
2022-10-22:以下go语言代码输出什么?A:moonfdd1;B:编译错误;C:运行时 panic
2022-10-22:以下go语言代码输出什么?A:moonfdd1;B:编译错误;C:运行时 panic。 package main import "fmt" func main() { var s fmt.Stringer s = "moonfdd1" fmt.Pri...
福大大
golang
选择题
2022-10-22
1
1803
2022-10-20:以下go语言代码输出什么?A:7;B:7.0;C:0;D:编译错误。 package
2022-10-20:以下go语言代码输出什么?A:7;B:7.0;C:0;D:编译错误。 package main import ( "fmt" ) func main() { const X = 7.0 var x interface{} = X if y, ok := x.(int...
福大大
golang
选择题
2022-10-20
1
309
2022-10-18:以下go语言代码输出什么?A:panic;B:编译错误;C:moonfdd1。 package
2022-10-18:以下go语言代码输出什么?A:panic;B:编译错误;C:moonfdd1。 package main import ( "fmt" "net/url" ) // 其中 url.Values 的定义:type Values map[string][]string ty...
福大大
golang
选择题
2022-10-18
1
627
2022-10-16:以下go语言代码输出什么?A:timed out;B:panic;C:没有任何输出。 packa
2022-10-16:以下go语言代码输出什么?A:timed out;B:panic;C:没有任何输出。 package main import ( "context" "fmt" ) func main() { ctx, _ := context.WithTimeou...
福大大
golang
选择题
2022-10-16
1
246
首页
上一页
1
2
3
4
5
6
7
下一页
末页