2022-07-26:以下go语言代码输出什么?A:5;B:hello;C:编译错误;D:运行错误。 package main import ( “fmt“ ) type integer in

Posted 福大大架构师每日一题

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2022-07-26:以下go语言代码输出什么?A:5;B:hello;C:编译错误;D:运行错误。 package main import ( “fmt“ ) type integer in相关的知识,希望对你有一定的参考价值。

2022-07-26:以下go语言代码输出什么?A:5;B:hello;C:编译错误;D:运行错误。

package main

import (
  "fmt"
)

type integer int

func (i integer) String() string 
  return "hello"


func main() 
  fmt.Println(integer(5))

答案2022-07-26:

答案选B。调用的是interger的String方法,所以是hello。不要被integer是整型所迷惑。

以上是关于2022-07-26:以下go语言代码输出什么?A:5;B:hello;C:编译错误;D:运行错误。 package main import ( “fmt“ ) type integer in的主要内容,如果未能解决你的问题,请参考以下文章

2022-08-05:以下go语言代码输出什么?A:65, string;B:A, string;C:65, int;D:报错。

2022-07-20:以下go语言代码是关于json 和 context的,输出什么?A:{};B:{“a“:“b“};C:{“Context“:0};D:不确定。 package main imp

2022-07-28:以下go语言代码输出什么?A:AA;B:AB;C:BA;D:BB。 package main import ( “fmt“ ) func main() { f

2022-10-16:以下go语言代码输出什么?A:timed out;B:panic;C:没有任何输出。 package main import ( “context“ “fmt“

2022-07-08:以下go语言代码输出什么?A:3;B:+Inf;C:true;D:编译错误。 package main import “fmt“ func main() { var

2022-11-08:以下go语言代码输出什么?A:2;B:编译错误;C:运行 panic。 package main import “fmt“ func main() { a := []int