- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我不明白如何正确确保某些东西不是 nil
在这种情况下:
package main
type shower interface {
getWater() []shower
}
type display struct {
SubDisplay *display
}
func (d display) getWater() []shower {
return []shower{display{}, d.SubDisplay}
}
func main() {
// SubDisplay will be initialized with null
s := display{}
// water := []shower{nil}
water := s.getWater()
for _, x := range water {
if x == nil {
panic("everything ok, nil found")
}
//first iteration display{} is not nil and will
//therefore work, on the second iteration
//x is nil, and getWater panics.
x.getWater()
}
}
nil
的唯一方法是通过使用反射。
最佳答案
这里的问题是 shower
是 interface
类型。 Go 中的接口(interface)类型保存实际值及其动态类型。更多详情:The Laws of Reflection #The representation of an interface .
您返回的 slice 包含 2 个非 nil
值。第二个值是一个接口(interface)值,一个 (value;type) 对,包含一个 nil
指针值和 *display
混凝土类型。引自 Go Language Specification: Comparison operators :
Interface values are comparable. Two interface values are equal if they have identical dynamic types and equal dynamic values or if both have value
nil
.
nil
进行比较,它将是
false
.如果将其与代表对
(nil;*display)
的接口(interface)值进行比较,它将是
true
:
if x == (*display)(nil) {
panic("everything ok, nil found")
}
这似乎不可行,因为您必须知道接口(interface)拥有的实际类型。但请注意,您可以使用反射来判断非
nil
接口(interface)值包装了一个
nil
值使用
Value.IsNil()
.你可以在
Go Playground 上看到一个例子。 .
interface
只是一个方法集,如果相同的方法是
method set 的一部分,任何类型都会实现它类型的。有些类型不能是
nil
,例如
struct
或自定义类型
int
作为其基础类型。在这些情况下,您不需要能够存储
nil
该特定类型的值。
nil
是一个有效值(例如 slice 、映射、 channel 、所有指针类型),因此为了在运行时存储满足接口(interface)的值,支持存储
nil
是合理的。界面里面。但除了
nil
在接口(interface)内部,我们必须将其动态类型存储为
nil
value 不携带此类信息。另一种选择是使用
nil
当其中存储的值为
nil
时作为接口(interface)值本身,但这种解决方案是不够的,因为它会丢失动态类型信息。
Some people say that Go's interfaces are dynamically typed, but that is misleading. They are statically typed: a variable of interface type always has the same static type, and even though at run time the value stored in the interface variable may change type, that value will always satisfy the interface.
nil
值
interface
类型,使用显式
nil
值,然后您可以测试
nil
平等。最常见的例子是内置的
error
type 是一种方法的接口(interface)。只要没有错误,就明确设置或返回值
nil
而不是某些具体(非接口(interface))类型错误变量的值(这将是非常糟糕的做法,请参见下面的演示)。
shower
) shower
类型的但具体类型*display
输入
shower
slice,将创建一个接口(interface)值,它是一对 (value;type) 其中 value 是
nil
和类型是
*display
.该对内的值将为
nil
,而不是接口(interface)值本身。如果你想放一个
nil
值进入 slice ,那么接口(interface)值本身就是
nil
和条件
x == nil
将是
true
.
type MyErr string
func (m MyErr) Error() string {
return "big fail"
}
func doSomething(i int) error {
switch i {
default:
return nil // == nil
case 1:
var p *MyErr
return p // != nil
case 2:
return (*MyErr)(nil) // != nil
case 3:
var p *MyErr
return error(p) // != nil because the interface points to a
// nil item but is not nil itself.
case 4:
var err error // == nil: zero value is nil for the interface
return err // This will be true because err is already interface type
}
}
func main() {
for i := 0; i <= 4; i++ {
err := doSomething(i)
fmt.Println(i, err, err == nil)
}
}
输出:
0 <nil> true
1 <nil> false
2 <nil> false
3 <nil> false
4 <nil> true
在情况 2 中
nil
返回指针,但首先将其转换为接口(interface)类型(
error
),因此会创建一个接口(interface)值,其中包含
nil
值和类型
*MyErr
,所以接口(interface)值不是
nil
.
关于pointers - 隐藏 nil 值,理解为什么 golang 在这里失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34214674/
我在使用以下代码时遇到问题: function http_file_exists($url){ $f=fopen($url,"r"); if($f){ fclose($f); retu
我已经通过 Git 部署到 Azure 几个月了,没有出现重大问题,但现在我似乎遇到了一个无法克服的错误。 我创建了一个新的 Azure 网站,为正在开发的项目创建单独的预览链接。我在新站点上设置了
我已经通过flutter创建了一个App并完成了它,我想在flutter文档中阅读时进行部署。 我收到此错误: FAILURE: Build failed with an exception. * W
我在Windows 10中使用一些简单的Powershell代码遇到了这个奇怪的问题,我认为这可能是我做错了,但我不是Powershell的天才。 我有这个: $ix = [System.Net.Dn
我正在尝试使用 RapidJSON 解析从服务器接收到的数据。以下是收到的确切字符串: [ { "Node": "9478149a08f9", "Address": "172.17
我尝试为 ios 编译 OpenCV。我总是收到这些错误。我用不同版本的opencv试了一下,结果都是一样的。 我运行这个:python 平台/ios/build_framework.py ios_o
我在一台机器上做基本的发布/订阅,我的客户端是 StackExchange-Redis 的 C# 客户端,我在同一台机器上运行基于 Windows 的 Redis 服务器(服务器版本 2.8.4) 当
我有这段代码,但无法执行,请帮我解决这个问题 连接 connect_error) { die ("connection failed: " . $terhubung->connect_erro
我在 tomcat 上运行并由 maven 编译的 Web 应用程序给出了以下警告和错误。我可以在本地存储库中看到所有 JAR,但有人可以帮忙吗。 WARNING: Failed to scan JA
我正在 Windows 8 上使用 Android Studio 开发一个 android 应用程序,我正在使用一些 native 代码。突然间我无法编译我的 C 文件。当我运行 ndk-build
下面的代码对类和结构的成员进行序列化和反序列化。序列化工作正常,但我在尝试使用 oarch >> BOOST_SERIALIZATION_NVP(outObj); 反序列化时遇到了以下错误; 代码中是
如果我运行此命令“rspec ./spec/requests/api/v1/password_reset_request_spec.rb”,此文件中的所有测试都会通过。 但是,当我运行“rspec”时
我在尝试执行测试以使用 Protractor 上传文件时出错,我的代码是这个 it('it should be possible to upload a file', function() {
System.loadLibrary("nativefaceswap"); 当我运行我的应用程序时,我在 Android Studio 中发现了此类错误。在logcat中显示: java.lang.U
我希望有人能帮助我!使用任何方法或命令行的任何 SSL/HTTPS 调用均无效。 我在 Windows 10 中使用 Ubuntu Server 18.04 作为子系统。我的问题是昨天才开始出现的,因
通过删除这两个值将日期字段从 null=True 和 Blank=True 更改为 required 时,使用 db.alter 命令时遇到问题。 当以下行被注释掉时,迁移运行不会出现问题。
我第一次使用 Heroku 尝试创建应用程序(使用 SendGrid 的 Inbound Parse Webhook"和 Twilio SMS 通过电子邮件发送和接收 SMS 消息)。通过 Virtu
我正在将我的 swift 项目更新到 Xcode 7 上的 Swift 2.0。xcode 在构建项目时报告了以下错误: 命令/Applications/Xcode.app/Contents/Deve
在我的代码中,SSL 库函数 SSL_library_init() 没有按预期返回 1。我如何才能看到它返回了什么错误? 我在 SSL_library_init() 之后调用了 SSL_load_er
我正在尝试运行在以下链接中找到的答案: Asynchronously Load the Contents of a Div 但是当我这样做时,我会遇到我不太理解的错误。 我的代码: $(documen
我是一名优秀的程序员,十分优秀!