如何设计可重新映射快捷键的软件?

发布于 2024-09-14 17:04:06 字数 1539 浏览 9 评论 0原文

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

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

发布评论

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

评论(1

阳光下的泡沫是彩色的 2024-09-21 17:04:06

我可能会使用命令模式之类的东西。创建一个哈希表,其中键是按下的键,值是要执行的操作的函数(或具有函数的对象)。

虽然可能有一种更快的方法可以在 CPU 时间内完成此操作,但这似乎是最干净、最可维护的方法,并且对于单用户应用程序来说它足够快,因此干净的代码应该非常重要。

I might use something like the Command Pattern. Create a hashtable, where the key is the key pressed, and the value is a function (or object with a function) that's the action to be executed.

While there's probably a much faster way to do this in CPU-time, that seems the cleanest and most maintainable way, and it's fast enough for a single-user application that clean code should be pretty important.

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