Pex 和“\0”这个的正确名称是什么?
我正在使用 Pex 并不断在我的字符串参数中抛出“\0”。通过一些测试,我发现它是某种字符串结尾?
我正在寻找它的官方名称以了解更多信息,但谷歌正在浅化“\0”的所有空白,使其成为 0,并且字符串结尾也不会出现太多。
有趣的是,字符串的长度是 "\0" ,长度1,显示"" "\0\0" ,长度2,显示“” "1234\056709",长度10,显示"1234"
谢谢提示
I am using Pex and keeps throwing "\0" at my string parameters. Through a little testing I found that it is some sort of end of string?
I am looking for the official name for this to learn more about it but google is shallowing all the white spaces of "\0" making it a 0 and end of string does not turn up much either.
Interstingly the lenght of strings are
"\0" , lenght 1, display ""
"\0\0" , lenght 2, display ""
"1234\056709", length 10, display "1234"
thx for the hints
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
空终止字符串
Null-terminated string
\0 是 NUL 字符的转义符。
\0 is the escape for the NUL character.