德尔福:Socket.ReadBytes();与 IOHandler.ReadBytes() 比较

发布于 2024-12-20 16:50:58 字数 162 浏览 1 评论 0原文

之间有什么区别:

AContext.Socket.ReadBytes(...);

 vs

AContext.IOHandler.ReadBytes(...);

它们的工作原理相同吗?或者可能是 IOHandler 中的一些缓存或其他东西?

Whats the difference between:

AContext.Socket.ReadBytes(...);

 vs

AContext.IOHandler.ReadBytes(...);

Do they work the same ? Or maybe some cache in IOHandler or something?

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

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

发布评论

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

评论(1

裂开嘴轻声笑有多痛 2024-12-27 16:50:58

两者实际上是完全相同的方法。当 Socket 属性是 TIdIOHandlerSocket 派生对象(大多数情况下)时,它指向相同的 IOHandler 组件,并且 < code>nil 否则。对于大多数 I/O 操作,您应该直接使用 IOHandler 属性,因为它为将 Indy 与不同类型的 I/O 系统结合使用提供了更大的灵活性。 Socket 属性是套接字特定功能的有用快捷方式,例如访问套接字的关联 IP/端口值。

The two are actually the exact same method. The Socket property points to the same IOHandler component when it is a TIdIOHandlerSocket-derived object (which is most of the time), and is nil otherwise. You should use the IOHandler property directly for most I/O operations, as it offers more flexibility to use Indy with different types of I/O systems. The Socket property is a useful shortcut for socket-specific functionality, like accessing the socket's associated IP/Port values.

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