Powershell -eq 运算符
为什么表达式 "1" -eq 1
在 powershell 中为 TRUE ?第一个是字符串类型,第二个是整数类型,为什么将它们视为相等。
Why does the expression "1" -eq 1
comes TRUE in powershell ? The first one is of string type and the second one is of integer type why is it treating them as equal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这称为隐式类型转换。
当在需要不同类型的上下文中使用一种类型的值时,Powershell 会自动执行类型转换。
来源
除了官方文档之外,这是 mklement0 的出色答案,其中包含一些其他示例和参考:PowerShell 隐式类型转换 - 会发生吗?安全吗?
This is called implicit type conversion.
Powershell automatically perform a type conversion when a value of one type is used in a context that requires a different type.
source
In addition to the official documentation, here is an excellent answer by mklement0 here with some additional examples and references: PowerShell Implicit Type Conversions - does it happen? Is it safe?