mblen 和 strlen 有什么区别?

发布于 2024-12-03 08:50:17 字数 106 浏览 1 评论 0原文

mblen 和 strlen 有什么区别?

如今,Windows、Linux 或 Mac OS 中是否使用多字节字符编码? Windows 中多字节字符编码与固定宽度字符编码相同吗?

What is the difference between mblen and strlen?

Is today multi-byte character encoding used in Windows, Linux or Mac OS? Is multi-byte character encoding same as fixed-width character encoding in Windows?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┈┾☆殇 2024-12-10 08:50:17

strlen 采用 const char * 的长度,并假设一个 char 占用一个字节,因此它会对字符进行计数,直到出现空终止符 ( '\0') 已遇到,而 mblen 也采用 const char * 类型的指针,但这指向 多字节字符

有关什么是多字节字符的更多信息,请查看问题。

strlen takes the length of a const char *, and assumes that one char takes one byte, so it counts the chars until a null terminator ('\0') has been encountered, whereas mblen takes a pointer also of type const char *, but this points to the first byte of the multi byte character.

For more info on what are multi-bye characters, have a look at this question.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文