2022-10-02:以下go语言代码能否通过编译?A: 能;B: 不能;C: 不知道。 package main import ( “fmt“ ) type worker interfa

Posted 福大大架构师每日一题

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2022-10-02:以下go语言代码能否通过编译?A: 能;B: 不能;C: 不知道。 package main import ( “fmt“ ) type worker interfa相关的知识,希望对你有一定的参考价值。

2022-10-02:以下go语言代码能否通过编译?A: 能;B: 不能;C: 不知道。

package main

import (
    "fmt"
)

type worker interface 
    work()


type person struct 
    name string
    worker


func main() 
    var w worker = person
    fmt.Println(w)


答案选A。接口也可以内嵌到结构体中。

以上是关于2022-10-02:以下go语言代码能否通过编译?A: 能;B: 不能;C: 不知道。 package main import ( “fmt“ ) type worker interfa的主要内容,如果未能解决你的问题,请参考以下文章

2022-09-02:以下go语言代码输出什么?A:9;B:11;C:编译错误;D:不确定。

比PythonJava更快的 Go 语言,能否称霸?

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

2022-09-22:以下go语言代码输出什么?A:5B:不能编译;C:运行时死锁。 package main import ( “fmt“ “time“ ) func main

了解GO

2022-09-10:以下go语言代码输出什么?A:编译错误;B:49.0;C:49。 package main import ( “fmt“ ) func main() { ch