在PHP中,接口是一种定义了一组方法的抽象类。我们可以通过实现接口来保证类具有特定的行为。然而,有时候我们需要从对接口的引用中获取对具体类型的引用。这在某些情况下可能会导致一些困惑。所
在PHP中,接口是一种定义了一组方法的抽象类。我们可以通过实现接口来保证类具有特定的行为。然而,有时候我们需要从对接口的引用中获取对具体类型的引用。这在某些情况下可能会导致一些困惑。所以,本文将向大家介绍如何从对接口的引用中获取对具体类型的引用。无论您是初学者还是有一定经验的开发者,本文都将对您有所帮助。接下来,让我们进入正题,一起探索这个问题的解决方案。
我试图了解 Go 中的方法、接口和具体类型是如何工作的。
比如,这里。
我的代码为:
type i interface {mymethod(....)}
type a struct{i i....}
func (a *a) mymethod(....) {
}
所以a实现了接口i。
在客户端代码中:
i := somefunction(....) // i is of type I
i.MyMethod(....)
如何从 i 获取对 a 的引用?
一组方法签名存储在接口类型中。 接口中定义的方法的任何实现都可以存储为其值。
如果变量是使用接口类型定义的,可以访问接口中定义的方法以及与实现的类型关联的其他方法无法访问。
界面:
type i interface {
value() string
}
实施:
type a string
func(a a) value() string {
return string(a)
}
func (a a) type() string {
return reflect.typeof(a).name()
}
在客户端代码中:
// define a variable with the type of i.
var a i = a("a")
// method value() defined in the i interface can be
// called.
value := a.value()
// method type() can not be called, because it is not defined in the interface.
typ := a.type()
注意:如果使用指针接收器实现方法,如下所示。您需要将实现的指针分配给i
。
实施:
type a string
func(a *a) value() string {
return string(a)
}
在客户端代码中:
a := A("a")
var i I = &a
以上就是如何从对接口的引用中获取对具体类型的引用的详细内容,更多请关注编程网其它相关文章!
--结束END--
本文标题: 如何从对接口的引用中获取对具体类型的引用
本文链接: https://lsjlt.com/news/562700.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0