是什么让Win9x NotePad如此稳定?
我正在考虑如何使文本编辑器非常稳定。根据我的经验,文本编辑器在表现出不稳定行为(挂起、文件损坏等)方面仅次于游戏。
我没有为 Windows 编程过,但自 20 世纪 90 年代中期以来,我维护了很多 Windows 机器,我突然想到,NotePad 可能是我经常使用但从未遇到过问题的应用程序。
Windows 9x NotePad 的设计为何如此稳定?非常小的文件大小限制(64 KB)是否允许更简单的内部结构?
I'm pondering how to make a text editor very stable. In my experience, text editors are second only to games in exhibiting flaky behavior (hanging, corrupted files, etc.).
I haven't programmed for Windows, but I have maintained a lot of Windows machines since the mid 1990s, and it occurred to me that NotePad is perhaps the one application I have used a lot but have never had a problem with.
What about the design of the Windows 9x NotePad made it so stable? Did the very small file size limit (64 KB) allow a simpler internal structure?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原因有两个:它被精简到最基本的部分,并且它的大部分功能依赖于现有的 Windows 文本控件。
Two reasons: it's pared down to the essentials, and it relies on the existing Windows text control for most of its functionality.